Hi All,
I'm using radchart in my application in my asp.net application.
Im binding the serieses with lists<int> from code behind.
If the all the values of list are zero then line horizental plain line showing at the zero postion of y axis.
But In Y axis its showing the negattive values also like 0 -10 -20 .....
I want to show the only positive values starting from 0 to....
And how to increase the height and width of plot area.
Please see the attached pic.
Please help me as early as possible.
I'm using radchart in my application in my asp.net application.
Im binding the serieses with lists<int> from code behind.
If the all the values of list are zero then line horizental plain line showing at the zero postion of y axis.
But In Y axis its showing the negattive values also like 0 -10 -20 .....
I want to show the only positive values starting from 0 to....
And how to increase the height and width of plot area.
Please see the attached pic.
Please help me as early as possible.
<telerik:RadChart ID="trndChrt" runat="server" SeriesOrientation="Vertical" ChartTitle-Visible="false" SkinsOverrideStyles="true" CreateImageMap="false" width="770px" Height="278px"> <Series> <telerik:ChartSeries Type="Line" Name="PTT"> <Appearance BarWidthPercent="90" LabelAppearance-Visible="false"> <FillStyle FillType="Solid" MainColor="#000099"> </FillStyle> <PointMark Visible="True" Border-Width="1" Border-Color="Red" Dimensions-AutoSize="false" Dimensions-Height="3px" Dimensions-Width="4px"> <FillStyle MainColor="Yellow" FillType="solid"> </FillStyle> </PointMark> <EmptyValue Mode="Zero" Line-Color="Transparent"> </EmptyValue> </Appearance> </telerik:ChartSeries> <telerik:ChartSeries Type="Line" Name="VOX" Appearance-LegendDisplayMode="SeriesName"> <Appearance BarWidthPercent="90" LabelAppearance-Visible="false"> <FillStyle FillType="Solid" MainColor="Black"> </FillStyle> <PointMark Visible="True" Border-Width="1" Border-Color="Red" Dimensions-AutoSize="false" Dimensions-Height="3px" Dimensions-Width="4px"> <FillStyle MainColor="Yellow" FillType="solid"> </FillStyle> </PointMark> </Appearance> </telerik:ChartSeries> <telerik:ChartSeries Type="Line" Name="State Change"> <Appearance BarWidthPercent="90" LabelAppearance-Visible="false"> <FillStyle FillType="Solid" MainColor="#f85007"> </FillStyle> <PointMark Visible="True" Border-Width="1" Border-Color="Red" Dimensions-AutoSize="false" Dimensions-Height="3px" Dimensions-Width="4px"> <FillStyle MainColor="Yellow" FillType="solid"> </FillStyle> </PointMark> </Appearance> </telerik:ChartSeries> <telerik:ChartSeries Type="Line" Name="Active Dispatchers"> <Appearance BarWidthPercent="90" LabelAppearance-Visible="false"> <FillStyle FillType="Solid" MainColor="#cc00ff"> </FillStyle> <PointMark Visible="True" Border-Width="1" Border-Color="Red" Dimensions-AutoSize="false" Dimensions-Height="3px" Dimensions-Width="4px"> <FillStyle MainColor="Yellow" FillType="solid"> </FillStyle> </PointMark> </Appearance> </telerik:ChartSeries> <telerik:ChartSeries Type="Line" Name="Calls"> <Appearance BarWidthPercent="90" LabelAppearance-Visible="false"> <FillStyle FillType="Solid" MainColor="#339933"> </FillStyle> <PointMark Visible="True" Border-Width="1" Border-Color="Red" Dimensions-AutoSize="false" Dimensions-Height="3px" Dimensions-Width="4px"> <FillStyle MainColor="Yellow" FillType="solid"> </FillStyle> </PointMark> </Appearance> </telerik:ChartSeries> </Series> <PlotArea Appearance-FillStyle-MainColor="White" XAxis-LayoutMode="Normal" XAxis-Appearance-MajorTick-Visible="false" YAxis-Appearance-MajorTick-Visible="false" YAxis-Appearance-MinorTick-Visible="false" EmptySeriesMessage-Appearance-Visible="false" Appearance-Border-Color="Black" Appearance-FillStyle-FillType="Solid" DataTable-Appearance-CellWidth="200" EmptySeriesMessage-Visible="false" XAxis-Appearance-MajorGridLines-Color="#d2d2d2" XAxis-Appearance-MajorGridLines-PenStyle="Solid" XAxis-Appearance-MajorGridLines-Width="1"> </PlotArea> <Legend Visible="false"> </Legend> </telerik:RadChart>