Jump to content
Software FX Community

CrossTabTransform and Series relationships?


mr.mghenry

Recommended Posts

 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

 

Link to comment
Share on other sites

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.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...