This section is regarding Methods and Properties available in Inputfields Element.
Examples:Method | Description | Example |
---|---|---|
get(String propertyName) | Returns the specified property of inputFields. | stockChart.rangeSelector.inputFields.get(“valueType”); |
set(String propertyName, Mixed value [,Boolean updateChart = true]) | Sets the specified property of inputFields & optionally updates (default) the StockChart. | stockChart.rangeSelector.inputFields.set(“enabled”, false); |
All Inputfields options become available as properties after StockChart is rendered. You can access them either via get method or dot notation. But you can change/set those values only via set method.
Please refer to Inputfields Element for complete list of properties available.