Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
230
Extra Text coming in the Ultra chart control
posted

Hi,recently we have migrated the .NET 1.1 application to .NET 2.0 and upgraded the NetAdvantage 2004 to 2008.
In our application we are using Ultra web chart wherein we are facing one formatting issue.
That is, at the bottom of the chart "<DATA_VALUE:0.0>" is displaying,Can someone suggest me the way to remove this from the chart?

I have attached the file and marked the issue in RED.

Regards,

Usha. 

 

  • 28496
    Offline posted

    i've never seen that before, but it looks like you have a second set of columns (a second numeric column in the datasource) and that is the charttext displaying over them... in every case, a column with a value of 0.

    you might want to try excluding that column using something like this...

    this.ultraChart1.IncludeColumn(1, false)

    or, just set the Column on the ChartText to 0 instead of -2.