backgroundColor: String

Sets the background color of Range Buttons. Values of backgroundColor can be specified in “HTML Color Name”, “hex code” or “rgba values”


Default: “white”
Example: “blue”, “#a0beec”, …

var stockChart = new CanvasJS.StockChart("container",
{
 .
 .
 rangeSelector: {
   buttonStyle: {
     backgroundColor: "#eccaa0",
     .
     .
   },
 },
 .
 . 
});
stockChart.render();



Try it Yourself by Editing the Code below.




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