Hello Gustavo,
Could you please clarify what do you mean by setting the visibility of "crossing points" to false? By crossing points if you mean:
- markers then you can set the visible property of the series MarkersAppearance tag to false.
- major/minor gridlines of both axes then you can set the visible property of the MajorGridLines/MinorGridLines tags of both axes to false.
For example:
<
telerik:RadHtmlChart
runat
=
"server"
ID
=
"LineChart"
Width
=
"800"
Height
=
"500"
Transitions
=
"true"
>
<
PlotArea
>
<
XAxis
>
<
Items
>
<
telerik:AxisItem
LabelText
=
"Monday"
></
telerik:AxisItem
>
<
telerik:AxisItem
LabelText
=
"Tuesday"
></
telerik:AxisItem
>
<
telerik:AxisItem
LabelText
=
"Wednesday"
></
telerik:AxisItem
>
<
telerik:AxisItem
LabelText
=
"Thursday"
></
telerik:AxisItem
>
<
telerik:AxisItem
LabelText
=
"Friday"
></
telerik:AxisItem
>
<
telerik:AxisItem
LabelText
=
"Saturday"
></
telerik:AxisItem
>
<
telerik:AxisItem
LabelText
=
"Sunday"
></
telerik:AxisItem
>
</
Items
>
<
MajorGridLines
Visible
=
"false"
></
MajorGridLines
>
<
MinorGridLines
Visible
=
"false"
></
MinorGridLines
>
</
XAxis
>
<
YAxis
>
<
MajorGridLines
Visible
=
"false"
></
MajorGridLines
>
<
MinorGridLines
Visible
=
"false"
></
MinorGridLines
>
</
YAxis
>
<
Series
>
<
telerik:LineSeries
Name
=
"Week 1"
MissingValues
=
"Gap"
>
<
MarkersAppearance
Visible
=
"false"
></
MarkersAppearance
>
<
SeriesItems
>
<
telerik:CategorySeriesItem
Y
=
"35"
></
telerik:CategorySeriesItem
>
<
telerik:CategorySeriesItem
Y
=
"52"
></
telerik:CategorySeriesItem
>
<
telerik:CategorySeriesItem
Y
=
"18"
></
telerik:CategorySeriesItem
>
<
telerik:CategorySeriesItem
Y
=
"39"
></
telerik:CategorySeriesItem
>
<
telerik:CategorySeriesItem
></
telerik:CategorySeriesItem
>
<
telerik:CategorySeriesItem
Y
=
"10"
></
telerik:CategorySeriesItem
>
<
telerik:CategorySeriesItem
Y
=
"6"
></
telerik:CategorySeriesItem
>
</
SeriesItems
>
</
telerik:LineSeries
>
</
Series
>
</
PlotArea
>
</
telerik:RadHtmlChart
>
You may also find useful
Configuring Series and
Configuring Axes help articles.
Regards,
Danail Vasilev
Telerik
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to the
blog feed now.