outlineColor: String

Sets the outline color of Slider. Values of outlineColor can be specified in “HTML Color Name”, “Hex code” or “rgb values”


Default: “#666666”
Examples: “#dedede”, “grey”, …

var  stockChart =  new  CanvasJS.StockChart("container",
{
 .
 .
 navigator: {
   .
   .
   slider: {
     outlineColor: "#dedede",
   },
   .
   .
 },
 .
 .
});
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