set(String propertyName, Mixed value [, Boolean updateChart = true])
Sets the specified property of Chart.
Parameters:
propertyName: Name of the property.
value: value to be set on property.
updateChart: When true, Updates the chart automatically after setting the value. Defaults to true.
Example : chart.set(“zoomEnabled”, true );
Note:
- Chart should be rendered before you can use this method.
- Because the chart updates each time set is called by default, it is recommended to disable auto update (set updateChart to false) till the last step if you have to set multiple properties. Otherwise it can affect performance because of repeated chart rendering. You can see an example below.
var chart = new CanvasJS("container",
{
.
.
.
.
});
chart.render();
chart.set("zoomEnabled", true);
Properties that can be set via this method
Please refer to Chart Element for complete list of properties that can be set via this method.