Ejemplo n.º 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);
 }
Ejemplo n.º 2
0
        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);
        }