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.
You can try:
this.ultraChart1.Axis.Y.RangeMin = 0;
this.ultraChart1.Axis.Y.TickmarkStyle = Infragistics.UltraChart.Shared.Styles.AxisTickStyle.DataInterval;
this.ultraChart1.Axis.Y.TickmarkInterval = 2.47;
Thanks, Teodar.