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
125
Plot a value on Y-Axis
posted

 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.

Parents
No Data
Reply
  • 17605
    Verified Answer
    posted

    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;

Children