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
Asked
Active
Viewed 119 times
0
-
provide us with some code? – Josip Ivic Oct 08 '15 at 09:42
-
Please Refer this http://dojo.telerik.com/AKelA/15. i also need to combine this both the chart into 1 PDF is it possible – VMS Oct 08 '15 at 10:09
1 Answers
0
Instead of hiding the markers via CSS, use the chart options
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