Method Definition: setProperty (String propertyName, Any value)
Parent: Chart
Description: setProperty() function used to update or set any one property value at runtime
setProperty() function used to update or set any one property of Title at runtime.
var chart = new Cosfire.Chart("chart-container", {....});
// Set Data nothing but setting one or more DataSeries having DataPoints in each DataSeries
chart.setDate([...]);
chart.render(function onRenderCompleted() {
// Once the chart rendered you can update the chart farther
// Update only one property at once.
chart.titles[0].setProperty('text', 'New Title');
// Now call render again to redraw the chart
chart.render();
}));