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); }
public static void DrawBarChart(Bitmap bitmap, Rectangle rect, Font font, BarData[] bars, string xLabel, string yLabel, string comment) { BarChart barChart = new BarChart(0.0M, bars, xLabel, yLabel, comment); barChart.Draw(bitmap, rect, font); }