Jump to content
Software FX Community

How to use Bar chart with Stacked


cgd

Recommended Posts

Does this work? (samples & resources center)

chart1.Gallery = SoftwareFX.ChartFX.Gallery.Gantt; chart1.Stacked = SoftwareFX.ChartFX.Stacked.Normal;// Populate with random dataSystem.Random r;r=new System.Random ();int i,j;chart1.OpenData(SoftwareFX.ChartFX.COD.Values, 2, 6);for (i=0;i<2;i++)    for (j=0;j<6;j++)        {             chart1.Value[i, j] = r.NextDouble()  * 100;             chart1.Legend[j] = "Prod " + j.ToString() ;        }chart1.CloseData(SoftwareFX.ChartFX.COD.Values);// Visualchart1.Border = true;chart1.BorderEffect = SoftwareFX.ChartFX.BorderEffect.Raised;chart1.Grid = SoftwareFX.ChartFX.ChartGrid.Horz;
Link to comment
Share on other sites

 Dear sir:

 Tks for your reply, I have been test it before.....

 But it seems like ChartFx for .NET 6.2  style

 Now i using Chart Fx 7  for VS.Net 2005(web form/Visual basic), and it can't be work

 Could you give me samples for Chart Fx 7?

 Tks a lot

  BR,   cgd

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...