I tried your suggestion out and unfortunately there has been no change. I've attached the code below. Maybe I have something else set that is overriding the necessary margin settings.
<
telerik:RadChart
ID
=
"RadChart1"
runat
=
"server"
DataSourceID
=
"SqlDataSource1"
AutoLayout
=
"true"
DefaultType
=
"Line"
Width
=
"900px"
Height
=
"400px"
Skin
=
"Vista"
OnItemDataBound
=
"RadChart1_ItemDataBound"
>
<
Appearance
Corners
=
"Round, Round, Round, Round, 7"
>
<
FillStyle
FillType
=
"ComplexGradient"
>
<
FillSettings
>
<
ComplexGradient
>
<
telerik:GradientElement
Color
=
"243, 253, 255"
></
telerik:GradientElement
>
<
telerik:GradientElement
Color
=
"White"
Position
=
"0.5"
></
telerik:GradientElement
>
<
telerik:GradientElement
Color
=
"243, 253, 255"
Position
=
"1"
></
telerik:GradientElement
>
</
ComplexGradient
>
</
FillSettings
>
</
FillStyle
>
<
Border
Color
=
"212, 221, 222"
></
Border
>
</
Appearance
>
<
Series
>
<%--DataXColumn is the horizontal database value (Dates in this case)--%>
<%--DataYColumn is the vertical database value (Perc_Online in this case)--%>
<
telerik:ChartSeries
Name
=
"Series1"
Type
=
"Line"
DataXColumn
=
"Float_TStamp"
DataYColumn
=
"Perc_Online"
>
<%--Do not show the labels above each marker value--%>
<
Appearance
ShowLabels
=
"False"
>
<%--Marker properties--%>
<
FillStyle
MainColor
=
"186, 207, 141"
SecondColor
=
"146, 176, 83"
>
<
FillSettings
GradientMode
=
"Vertical"
>
<
ComplexGradient
>
<
telerik:GradientElement
Color
=
"213, 247, 255"
/>
<
telerik:GradientElement
Color
=
"193, 239, 252"
Position
=
"0.5"
/>
<
telerik:GradientElement
Color
=
"157, 217, 238"
Position
=
"1"
/>
</
ComplexGradient
>
</
FillSettings
>
</
FillStyle
>
<
PointMark
Visible
=
"True"
Border-Width
=
"2"
Border-Color
=
"DarkKhaki"
Dimensions-AutoSize
=
"false"
Dimensions-Height
=
"6px"
Dimensions-Width
=
"6px"
>
</
PointMark
>
<%--Size of the horizontal series line inside the chart--%>
<
LineSeriesAppearance
Width
=
"2"
/>
<
TextAppearance
TextProperties-Color
=
"89, 89, 89"
/>
</
Appearance
>
</
telerik:ChartSeries
>
</
Series
>
<
PlotArea
>
<%--Always specify IsZeroBased="False" or the values begin at 0--%>
<
XAxis
IsZeroBased
=
"false"
LabelStep
=
"1"
LayoutMode
=
"Normal"
>
<%--Format the X (horizontal) labels at the bottom of the chart to ShortDate--%>
<
Appearance
ValueFormat
=
"ShortDate"
>
<
MajorGridLines
Width
=
"0"
Color
=
"196, 196, 196"
/>
<
TextAppearance
TextProperties-Color
=
"89, 89, 89"
/>
</
Appearance
>
<
AxisLabel
>
<
Appearance
Dimensions-Paddings
=
"1px, 1px, 10%, 1px"
/>
<
TextBlock
>
<
Appearance
TextProperties-Font
=
"Verdana, 9.75pt, style=Bold"
/>
</
TextBlock
>
</
AxisLabel
>
</
XAxis
>
<%--Always specify IsZeroBased="False" or the values begin at 0 and autoscale won't work--%>
<
YAxis
AutoScale
=
"true"
IsZeroBased
=
"false"
>
<%--Format the Y (vertical) labels at the left of the chart to %--%>
<
Appearance
MajorTick-Visible
=
"True"
MinorTick-Visible
=
"True"
ValueFormat
=
"Percent"
>
<
MajorGridLines
Color
=
"196, 196, 196"
/>
<
MinorGridLines
Width
=
"0"
Color
=
"196, 196, 196"
/>
<%--Format the Left axis labels so that they all fit on the page - needed when we have
all equal values in the chart and the chart shows a straight horizontal line--%>
<
TextAppearance
Dimensions-Margins
=
"7px, 1px, 1px, 1px"
TextProperties-Font
=
"Verdana, 9.75pt, style=Bold"
/>
</
Appearance
>
</
YAxis
>
<
Appearance
Corners
=
"Round, Round, Round, Round, 6"
>
<
FillStyle
MainColor
=
"White"
FillType
=
"Solid"
/>
<
Border
Color
=
"WhiteSmoke"
/>
</
Appearance
>
</
PlotArea
>
<
ChartTitle
>
<
Appearance
Position-AlignedPosition
=
"Top"
/>
<
TextBlock
Text
=
"% Online History"
>
<
Appearance
TextProperties-Font
=
"Verdana, 11.25pt, style=Bold"
>
</
Appearance
>
</
TextBlock
>
</
ChartTitle
>
<%--Turn off the legend--%>
<
Legend
Visible
=
"false"
>
<
Appearance
Visible
=
"False"
Dimensions-Margins
=
"1px, 1%, 10%, 1px"
>
<
ItemTextAppearance
TextProperties-Color
=
"86, 88, 89"
/>
<
ItemMarkerAppearance
Figure
=
"Rectangle"
/>
<
FillStyle
MainColor
=
""
/>
<
Border
Color
=
""
/>
</
Appearance
>
<
TextBlock
>
<
Appearance
TextProperties-Color
=
"86, 88, 89"
Position-AlignedPosition
=
"Top"
/>
</
TextBlock
>
</
Legend
>
</
telerik:RadChart
>
Also as a separate issue, the designer keeps re-aligning my code and adding extra settings. I keep deleting them to make the code clean and easy to read, yet it continues to do it's own thing. Any way to prevent those automatic changes to my code?