protected void Page_Load(object sender, EventArgs e)
        {
            OpenFlashChart.OpenFlashChart chart = new OpenFlashChart.OpenFlashChart();
            chart.Title   = new Title("Bar 3D");
            chart.Bgcolor = "99CCFF";


            OpenFlashChart.Bar3D bar = new OpenFlashChart.Bar3D();
            Random random            = new Random();

            bar.Colour = "#3f4ff5";

            bar.FillAlpha = 0.4;
            bar.Text      = "Test";

            bar.FontSize = 10;
            List <double> values = new List <double>();
            List <string> labels = new List <string>();

            for (int i = 0; i < 12; i++)
            {
                values.Add(random.Next(i, i * 2));
                labels.Add(i.ToString());
            }
            bar.Values = values;
            chart.AddElement(bar);
            chart.X_Axis.Steps        = 4;
            chart.X_Axis.Labels.Steps = 4;
            chart.X_Axis.SetLabels(labels);
            chart.X_Axis.Labels.Vertical = true;

            chart.X_Axis.Set3D(12);

            chart.Y_Axis.Set3D(3);
            chart.Y_Axis.Steps = 4;

            string s = chart.ToString();

            Response.Clear();
            Response.CacheControl = "no-cache";
            Response.Write(s);
            Response.End();
        }
    protected void Page_Load(object sender, EventArgs e)
    {
        OpenFlashChart.OpenFlashChart chart = new OpenFlashChart.OpenFlashChart();
        chart.Title = new Title("Bar 3D");

        Bar3D bar = new OpenFlashChart.Bar3D();
        Random random = new Random();
        bar.Colour = "#345";

        bar.Fillalpha = 0.4;
        bar.Text = "Test";

        bar.Fontsize = 10;
        List<double> values = new List<double>();
        List<string> labels = new List<string>();
        for (int i = 0; i < 12; i++)
        {values.Add(random.Next(i, i * 2));
        labels.Add(i.ToString());
        }
        bar.Values = values;
        chart.AddElement(bar);
        chart.X_Axis.Steps = 4;
        chart.X_Axis.Labels.Steps = 4;
        chart.X_Axis.Labels.Values = labels;
        chart.X_Axis.Labels.Vertical = true;

        chart.X_Axis.Set3D(12);

        chart.Y_Axis.Set3D(3);
        chart.Y_Axis.Steps = 4;

        string s = chart.ToString();
        Response.Clear();
        Response.CacheControl = "no-cache";
        Response.Write(s);
        Response.End();
    }