You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
mlzummo edited this page Dec 14, 2015
·
4 revisions
Persist takes 3 params the the last 2 being optional:
widget (object), properties (array), includeData (boolean)
the simplest example:
require(["src/other/Persist","src/chart/Column"],function(Persist,Column){varcolumnChart=newColumn().target("#div-id").columns([]).data([]).render();varserializationString=Persist.serialize(columnChart);// save to DB});