I have a line chart with a Y axis value of whole integers and a X axis values of time.
On the Y axis I get repeating tick marks of whole integers (ie. 1,1,1,2,2,2) even though all numbers are exactly one or two.
How can I stop the chart from creating these duplicate tick marks?
Thanks!
The labels you are seeing are a result of rounding. You can either change the format string on the axis label or you can set a custom axis range, 1 to 10 step 1.
I'm seeing the same thing, but all of my y axis values(in the datatable) are integers. Why would I see any results of rounding?
disregard this, found the answer here:http://devcenter.infragistics.com/Support/KnowledgeBaseArticle.Aspx?ArticleID=5645