Jump to content
Software FX Community

Feroz

Members
  • Posts

    5
  • Joined

  • Last visited

Feroz's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. Hi, I have set the custom step for the chart. I want to know how to remove the same Thanks M.S. Feroz
  2. Hi, Assigning double.NaN to y values returns Overflow error. Here is the code. chart1.OpenData(SoftwareFX.ChartFX.COD.Values, 1, 6); chart1.OpenData(SoftwareFX.ChartFX.COD.XValues, 1, 6); chart1.Value[0, 0] = 52; chart1.Value[0, 1] = double.NaN; chart1.Value[0, 2] = 53; chart1.Value[0, 3] = 54; chart1.Value[0, 4] = 55; chart1.Value[0, 5] = 56; chart1.XValue[0, 0] = 0; chart1.XValue[0, 1] = 3; chart1.XValue[0, 2] = 4; chart1.XValue[0, 3] = 1; chart1.XValue[0, 4] = 2; chart1.XValue[0, 5] = 5; chart1.CloseData(SoftwareFX.ChartFX.COD.Values); chart1.CloseData(SoftwareFX.ChartFX.COD.XValues); chart1.Gallery = SoftwareFX.ChartFX.Gallery.Lines; I need to show the user that Y has some value. How to achieve this. Thanks M.S. Feroz.
  3. Hi I am creating the Chart with Following datas. There is a problem with DataEditor. The value shown in the tooltip is matched with the data in the DataEditor Grid, but the X Label Value is not getting matched with the DataEditor Header. Here is the codings Chart chart1 = new Chart(); chart1.Width = 1100; chart1.Height = 750; this.Controls.Add(chart1); chart1.AxisY.Min = 50; chart1.AxisY.Max = 60; int i, j; chart1.OpenData(SoftwareFX.ChartFX. COD.Values, 2, 5);chart1.OpenData(SoftwareFX.ChartFX.COD.XValues, 2, 5); //series1 chart1.Value[0, 0] = 51.380; chart1.Value[0, 1] = 52.620; //series2 chart1.Value[1, 0] = 56.160; chart1.Value[1, 1] = 58.340; chart1.Value[1, 2] = 54.9; //series1 chart1.XValue[0, 0] = 5; chart1.XValue[0, 1] = 3; //series2 chart1.XValue[1, 0] = 4; chart1.XValue[1, 1] = 1; chart1.XValue[1, 2] = 2; chart1.CloseData(SoftwareFX.ChartFX.COD.Values); chart1.CloseData(SoftwareFX.ChartFX. COD.XValues);chart1.AxisX.Label[0] = "A"; chart1.AxisX.Label[1] = "B";chart1.AxisX.Label[2] = "C"; chart1.AxisX.Label[3] = "D";chart1.AxisX.Label[4] = "E"; chart1.Gallery = SoftwareFX.ChartFX. Gallery.Lines; Thanks M.S. Feroz.
  4. Hi , I get the OverFlowException if i change the Scale of Y during runtime. I am using Scatter Chart I want to know what is the reason for this exception and how to handle it thanks Feroz.
×
×
  • Create New...