0

When I am exporting image using ExportImage function in KendoUI chart only following data is getting exported : enter image description here

Of course i need to export the bars or columns as well.

S2K
  • 1,185
  • 3
  • 27
  • 55
  • Can you please elaborate? According to their demo it does export the bars. Have a look at: http://demos.telerik.com/kendo-ui/chart-api/export – Rian Mostert Aug 09 '16 at 11:00
  • The chart is first not loaded in DOM, on button click i get the required data and create the chart after chart render event is completed, i have referenced chart data and used export image function but that showing above output – S2K Aug 09 '16 at 11:07

1 Answers1

0

Without rendering the chart it appears that your best bet is to export as SVG and then convert that to PNG as stated here: Is it possible to save the kendo chart as png format without using any 3rd party tool (linkspace)?

Community
  • 1
  • 1
Rian Mostert
  • 714
  • 1
  • 7
  • 19
  • thanks for the reply !!! The issue was call has been given to export before rendering of columns is been completed, so some execution delay is added. – S2K Aug 11 '16 at 06:40