0

I'm trying to find a way to execute some javascript after the kendo chart has been drawn.

example here

I can't seem to find anything in the documentation.

Thanks

RayLoveless
  • 19,880
  • 21
  • 76
  • 94
  • could you not just run some code after the databound event? http://docs.telerik.com/kendo-ui/api/javascript/dataviz/ui/chart#events-dataBound – David Shorthose Oct 30 '14 at 17:44
  • Thanks! Can you add this as the answer and I'll give you credit. I hate answering my own questions. – RayLoveless Oct 31 '14 at 15:52

1 Answers1

1

AS per the comment I made.

You could just add the databound event within the initialization as per:

dataBound: function(e){ do something here....}

for further reading: http://docs.telerik.com/kendo-ui/api/javascript/dataviz/ui/chart#events-dataBound

David Shorthose
  • 4,489
  • 2
  • 13
  • 12