Does Silverlight DV 10.3 xamWebChart support clustered stacked column graphs. Specifically, 2 or more stacked data series referenced the same X-axis point. Please post example in C#. Thx,
Hello Nathan,
XamWebChart does support stacked column chart. I am attaching a sample that demonstrates 3 stacked serieces, and also refer to the online documentation for more information:
http://help.infragistics.com/NetAdvantage/DV/current/CLR4.0/?page=SL_DV_xamWebChart_Stacked_Column_Chart.html
Thank you,Sam
Thanks for your reply but the documentation does describe create the graph I need.
To clarify my requirement, the graph has 2 or more stacked columns right next to each other sharing the same X-Axis lablel.
Thanks for you help.
Apologies, I just noticed your attached zip file. I will review your code and give you feedback.
Thanks.
This works for me. Thx.
You can use ChartParameter and set the PointWith to manipulate the space between the columns, but that would apply to all DataPoints. I don't think you can group the DataPoints the way you described (3 columns, space, 2 columns). One way to do this would be to create a dummy DataPoint with zero value, blank label, no marker as another DataPoint between any group of colums that you wanted. But this would be part of your data.
Let me know if you have any question.
I ran you solution and would like to have the 3 stacked columns touching ( no white space separating IBM, Dell and Sony ). I would like to control the white spacing to between Sony and Lenovo. This would give me the "clustered" graph format. Thanks.