Ejemplo n.º 1
0
 public override void SetStyle(ChartStyle style)
 {
     if (style is BarChartStyle barStyle)
     {
         _style = barStyle;
         base.SetStyle(style);
     }
 }
Ejemplo n.º 2
0
 public BarChart(DataCollection data, BarChartStyle style, int width, int height) : base(data, style, width, height)
 {
     _style = style;
 }