This section is regarding Methods and Properties available in style object of the Inputfields element.
Examples:Method | Description | Example |
---|---|---|
get(String propertyName) | Returns the specified property of inputFields style. | stockChart.rangeSelector.inputFields.style.get(“width”); |
set(String propertyName, Mixed value [,Boolean updateChart = true]) | Sets the specified property of inputFields style & optionally updates (default) the StockChart. | stockChart.rangeSelector.inputFields.style.set(“fontColor”, “blue”); |
All Style 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 Style Element for complete list of properties available.
Also See: