Example #1
0
 public static void DrawBarChart( Bitmap bitmap, Rectangle rect, Font font, BarData[] bars, string xLabel, string yLabel, string comment )
 {
      BarChart barChart = new BarChart( bars, xLabel, yLabel, comment );
      barChart.Draw(bitmap, rect, font);
 }
Example #2
0
 public BarChart( BarData[] bars, string xLabel, string yLabel, string _comment ) 
 {
     values = bars;
     xAxisSign = xLabel;
     yAxisSign = yLabel;
     comment = _comment;
 }