Jump to content
Software FX Community

Chart Axis End Label


Soumi Sanyal

Recommended Posts

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

 

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