Sign in to follow this  
tyler

How can I get rid of this text on my chart (image included)

Recommended Posts

There is a string of text that appears on my chart (see diagram) which is the data for the first bar.  How can I prevent that from displaying?

 

 

post-58562-0-70214400-1383084439_thumb.png

Share this post


Link to post
Share on other sites
Guest Sashibhusan

Hi,

 

Could you please post the XML/JSON data provided to the chart and mention the chart type that you are using?

 

Awaiting your inputs.

Share this post


Link to post
Share on other sites

Here you are:

<chart  caption='Primary Crusher Performance'
  subCaption='Perfromance by Week View'
  dataStreamURL='../DataProviders/CrusherPerformanceWeeklyView.aspx'
  refreshInterval='3'
  numberPrefix=''
  setAdaptiveYMin='0'
  xAxisName='Shifts'
  yAxisName='Tonnes'
  yAxisMaxValue='100000'
  plotGradientColor=' '
  showValues='1'
  decimals='0'
  formatNumberScale='0'
  interactiveLegend='1'
  showRealTimeValue='1'
  labelDisplay='Rotate'
  slantLabels='0'
  numDisplaySets='16'>
<dataset seriesName='Cr1' showValues='0'></dataset>
<dataset seriesName='Cr4' showValues='0'></dataset>
<dataset seriesName='Cr5' showValues='0'></dataset>
<trendlines>
  <line startValue='70000' color='FF0000' displayValue='70,000' showOnTop='1'/>
</trendlines>
<styles>
  <definition>
   <style type='font' name='captionFont' size='14' />
  </definition>
  <application>
   <apply toObject='Caption' styles='captionFont' />
   <apply toObject='Realtimevalue' styles='captionFont' />
  </application>
</styles>
</chart>

Share this post


Link to post
Share on other sites

Hey,

 

Try setting "showRealTimeValue" attribute to 0. This attribute helps you set whether you want the latest value (received from server) to be displayed on the chart or not.

 

Hope this helps.

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
Sign in to follow this