I will start by quickly saying I am a first time poster but a long time lurker here. I have exhausted all resources at my disposal trying to figure this problem out and have decided to post my problem now!

So I am working on some graphing functionality for an application I am building, right now it is in very basic stage just so I can have the correct output. My goal for this graphing portion of the application is to have two stacked column charts beside one another with different data in each. They consist of 5 series (both the same).

Here is my current code:

     private void GraphingForm_Load(object sender, EventArgs e)
     {
        //Set the title
        chart.Titles.Add("Title");

        // Populate series data
        string[] seriesArray = {"s1", "s2", "s3", "s4", "s5" };
        double[] data = { 10.5, 30.10, 90.4, 32.5, 12.0, 1, 1, 1, 1, 1 };

        //Graph Series and bind data
        for (int i = 0; i < data.Length; i++)
        {
            Series series = chart.Series.Add(seriesArray[i]);
            series.Points.Add(data[i]);
            chart.Series[seriesArray[i]].IsValueShownAsLabel = true;
            series.ChartType = SeriesChartType.StackedColumn;

        }

        // Set to 3D
        //chart.ChartAreas["Default"].Area3DStyle.Enable3D = true;
        //chart.ChartAreas["Default"].Area3DStyle.LightStyle = LightStyle.Simplistic;
     }

So what the output look's like is basically displaying only the first 5 numbers from the data array partitioned correctly with the respective series. However the other 5 data values I have (1,1,1,1,1) which I wanted to graph beside the first stacked column chart bar (I am not sure what to call that) will not display. I have started this stuff just last night and have been following the Microsoft chart tutorials along with lot's of online resources.

Here's a link to a screenshot of the output in case it helps!

Also a side note, the commented out code for setting the chart to 3D does not work. It would be great if someone can shed some light on that too. It was taken directly from the Microsoft chart example code.

I apologize for the longevity of this post and hope you guy's can help!

/* EDIT FOR SOLUTION */

I was able to fix this issue...not the best implementation technique but it works - here is my revised code.

    string[] seriesArray = {"s1", "s2", "s3", "s4", "s5" };
    double[] data = { 10.5, 30.10, 90.4, 32.5, 12.0}; 
    double[] data2 = { 1,1,1,1,1};          

    //first stacked bar 
    for (int i = 0; i < seriesArray.Length; i++) 
    {    
      chart.Series[seriesArray[i]].Points.AddY(data[i]); 
    } 

    //second stacked bar 
    for (int i = 0; i < seriesArray.Length; i++) 
    { 
      chart.Series[seriesArray[i]].Points.AddY(data2[i]); 
    }

I welcome any better solutions as this is probably not that great design wise.

link|improve this question
Please avoid prefixing your question titles with C#, that is what the tags are for. Also please refer to the FAQ regarding signatures in posts. – M.Babcock Feb 1 at 14:52
Apologies, thanks for the head's up! – Surep Feb 1 at 15:08
Please be sure to answer your question including your findings and experiences. This will allow future SO users to learn from what you've found and current SO users to help improve it. Doing so will also keep your accept rate up, so if you ask more questions in the future, people will be more willing to help. – M.Babcock Feb 2 at 0:29
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.