Jump to content
Software FX Community

Soumi Sanyal

Members
  • Posts

    1
  • Joined

  • Last visited

Soumi Sanyal's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. Hi, We have been using Chart FX 7.0 to create charts in our .Net Web Application.<?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /> We have created the chart object using SoftwareFX.ChartFX.Wrapper.Internet.Server.Chart class. We are facing an issue that we are not able to plot the End label of the chart axis. From our code we tried to calculate the no of labels that might be rendered from the chart data. Then we tried to render all the individual XAxis and YAxis labels from the code. This approach resulted in successful rendering of the First label but failed in rendering the End Label. SoftwareFX.ChartFX.Wrapper.Internet.Server.Chart m_chart = new SoftwareFX.ChartFX.Wrapper.Internet.Server.Chart(); for (int c = 0; c <= count - 1; c++) // (where count stands for the no of data to be plotted) { m_chart.AxisX.Label[c] = "Label " + c; } The above piece of code successfully rendered the 1st Label and some mid-labels along the X-Axis, but failed to render the End Label. Is there any property of Chart FX by which we can allow the Chart Axis to render End label, and also the mid-point step labels too?? Please consider this as an urgent issue. Thanks in advance. Soumi
×
×
  • Create New...