Sets the color of marker that is displayed on the Chart. Legend Marker for the series uses the same Color as set here unless overridden using legendMarkerColor property.
Default: dataSeries Colorvar  chart =  new  CanvasJS.Chart("container",
{
 .
 .
 data: [{
   markerColor: "#008000",
  },
 ]
 .
 .
});
chart.render();