I have a box and whisker plot (boxplotseries)
I have a server version and a local version of the same project.
The only difference between the projects is that I upgraded my local project from 2015.2 to 2016.3.914 this morning.
I have NarrowRange="true" set both in the front side and in the code behind for this graph. 2015.2 shows a non-zero based chart in production, and local shows zero based regardless of range.
Is there a different way to define narrowrange in the latest release, or is this a bug?
I have reverted back to 2015.2 via the VS/Telerik upgrade wizard and have resolved my issue for now.
<telerik:RadHtmlChart runat="server" ID="rcBP" Width="250px" Height="300px"> <Legend> <Appearance Visible="True" BackgroundColor="Yellow"></Appearance> </Legend> <PlotArea> <XAxis></XAxis> <Series > <telerik:BoxPlotSeries> <TooltipsAppearance Color="White" BackgroundColor="#4f99d2" > <ClientTemplate > Avg: #=kendo.format(\'{0:N2}\',dataItem.Avg)# <br /> P10: #=kendo.format(\'{0:N0}\',dataItem.D10)# <br /> P25: #=kendo.format(\'{0:N0}\',dataItem.D25)# <br /> P50: #=kendo.format(\'{0:N0}\',dataItem.P50)# <br /> P75: #=kendo.format(\'{0:N2}\',dataItem.P75)# <br /> P90: #=kendo.format(\'{0:N2}\',dataItem.P90)# </ClientTemplate> </TooltipsAppearance> <Appearance FillStyle-BackgroundColor="#4f99d2" ></Appearance> </telerik:BoxPlotSeries> </Series> <XAxis Visible="False" > <Items > <telerik:AxisItem LabelText="" /> </Items> <MajorGridLines Visible="False" /> <MinorGridLines Visible="False" /> </XAxis> <YAxis MinorTickType="None" MajorTickType="None" NarrowRange="true" > <MinorGridLines Visible="False" /> <MajorGridLines Visible="False" /> <LabelsAppearance DataFormatString="{0:C2}"> </LabelsAppearance> </YAxis> </PlotArea> </telerik:RadHtmlChart>