This question is locked. New answers and comments are not allowed.
I have a chart set to load on demand, but numbers dont add up to scale. (see image)
the value passed is 200, i have checked, the lable shows 200, but yvalue shows about 180.
Code below
Thanks
@(Html.Telerik().Chart(Of BO.Dataflow.ProductSale).Name("ProductChart") _.Title("Product Totals").Legend(Function(legend) legend.Position(ChartLegendPosition.Bottom)) _.ValueAxis(Function(a) a.Numeric().Min(0)) _.Series(Sub(series) series.Bar("Net").Name("Net").Color("#8FDE02").Labels(True) series.Bar("Gst").Name("Gross").Color("#4E7A25").Labels(True) End Sub) _ .CategoryAxis(Function(axis) axis.Categories(Function(s) s.Product)) _ .DataBinding(Function(d) d.Ajax.Select("productchart", "order", New With { .area = "franchisees", .Year = Model.DateObject.Year, .Month = Model.DateObject.Month })).HtmlAttributes(New With {.style = "width: 600px; height: 400px;"}))