configures a property of chart
property | string | the name of mode or property which needs being configured |
value | string | the value which needs being assigned to mode or property, true by default |
myChart.define("sort",{
by:"#sales#",dir:"asc",as:"int"
})
To apply the new configuration parameters you need to call refresh() method.
Back to top