get(String propertyName)

Returns the specified style property of inputFields.


Parameters:
        propertyName: Name of the property

Example: stockChart.rangeSelector.inputFields.style.get(“backgroundColor”);

Note:
  • You can refer to Style Element for complete list of properties available.
  • StockChart should be rendered before you can use get method.

var stockChart = new CanvasJS.StockChart("container",
{
 .
 .
 rangeSelector: {
   inputFields: {
     style: {
       .          
        //style properties of inputFields
       .
     }
     .
   }
 }
 .
 . 
});
stockChart.render();

console.log(stockChart.rangeSelector.inputFields.style.get("fontSize"));

Properties accessible via get method

Please refer to Style Element for the complete list of properties that can be accessed via get method.




Try it Yourself by Editing the Code below.


  Also See:    



If you have any questions, please feel free to ask in our forums.Ask Question