0

i am exporting line chart to PDF. it exported successfully but the issue is it will display circles on line on export to PDF File. while on chart i removed that circles using "#Chart circle{display: none !important;}" CSS Code. now i also need to remove that circle from export to PDF as well

VMS
  • 1
  • 1
  • 3

1 Answers1

0

Instead of hiding the markers via CSS, use the chart options

http://docs.telerik.com/KENDO-UI/api/javascript/dataviz/ui/chart#configuration-series.markers.visible

  series: [{
            type: "line",
            field: "value",
            markers: {
                visible: false
            }

        }],

Updated DOJO

ezanker
  • 24,628
  • 1
  • 20
  • 35
  • Thank you, ezanker , now i need to export both the chart in on1 pdf is it doable> – VMS Oct 13 '15 at 11:42
  • @VMS, yes. Here is an updated DOJO: http://dojo.telerik.com/@ezanker/anAqu and here is the demo from telerik: http://demos.telerik.com/kendo-ui/pdf-export/index – ezanker Oct 13 '15 at 12:53