Exemplo n.º 1
0
 public override void SetStyle(ChartStyle style)
 {
     if (style is ScatterChartStyle scatterStyle)
     {
         _style = scatterStyle;
         base.SetStyle(style);
     }
 }
Exemplo n.º 2
0
 public ScatterChart(DataCollection data, ScatterChartStyle style, int width, int height) : base(data, style, width, height)
 {
     _style = style;
 }