Infragistics Home

Infragistics Forums

Infragistics community online discussions.
Welcome to Infragistics Forums Sign in | FAQ
in Search

Plot a value on Y-Axis

Last post 07-08-2008 12:09 by Beechwood. 2 replies.
Page 1 of 1 (3 items)
Sort Posts: Previous Next
  • 07-03-2008 11:55

    Plot a value on Y-Axis

     Hi All,

    I have using a ColumnChart. My point of interest on Y-Axis is 2.47 but I am having marked intervals like 0.4, 0.8, 0.12 etc on Y-axis. I dont want to display any intervals on the Y-axis other than my total value. i.e. 2.47 and I want to hightlight/mark 2.47 to make it unique. Is there any way to achieve it?

    Thanks.

    • Post Points: 20
  • 07-04-2008 4:04 In reply to

    Re: Plot a value on Y-Axis

    Answer

    You can try:

    this.ultraChart1.Axis.Y.RangeType = Infragistics.UltraChart.Shared.Styles.AxisRangeType.Custom;

    this.ultraChart1.Axis.Y.RangeMin = 0;

    this.ultraChart1.Axis.Y.RangeMax = 2.47;

    this.ultraChart1.Axis.Y.TickmarkStyle = Infragistics.UltraChart.Shared.Styles.AxisTickStyle.DataInterval;

    this.ultraChart1.Axis.Y.TickmarkInterval = 2.47;

    Best regards,
    Teodor Taushanov
    • Post Points: 20
  • 07-08-2008 12:09 In reply to

    Re: Plot a value on Y-Axis

     Thanks, Teodar.

    • Post Points: 5
Page 1 of 1 (3 items)
Powered by Community Server (Commercial Edition), by Telligent Systems