mr.mghenry Posted January 14, 2009 Report Posted January 14, 2009 Hello, When I create a chart using CrossTabTransform, how do I get to a particular series that the CrossTabTransform created to change it's gallery type? Thanks, Mike Quote
mr.mghenry Posted January 14, 2009 Author Report Posted January 14, 2009 The reason for this is that my object that I'm graphing is: public class EngineeringChartDtoCrossTab { private string source; private double value; private DateTime accountDate; public EngineeringChartDtoCrossTab(string source, double value, DateTime accountDate) { this.source = source; this.value = value; this.accountDate = accountDate; } public string Source { get { return source; } } public double Value { get { return value; } } public DateTime AccountDate { get { return accountDate; } } } I want to have the "Source" create the series, "AccountDate" be the x-axis labels and "Value" be the data point. However for all series that a crosstabtransform would create I want all the series except one of them to be a bar graph that is stacked...and one where the graph produces a line that is not stacked and also a line not a bar. Thanks for your help, Mike Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.