This is a migrated thread and some comments may be shown as answers.

Highlight Marker on Scatter Line Chart

1 Answer 112 Views
Chart (Obsolete)
This is a migrated thread and some comments may be shown as answers.
Benoit
Top achievements
Rank 1
Benoit asked on 31 Oct 2014, 04:47 PM
Hello,

Is it possible to hide markers on this type of chart and to highlight them only on mouseover ?
I saw on the forum that it is possible with kendo but I would like to know with ASP.NET ajax charts

Thanks a lot.

1 Answer, 1 is accepted

Sort by
0
Danail Vasilev
Telerik team
answered on 04 Nov 2014, 08:55 AM
Hi Benoit,

You can simply hide the markers and when you hover over items they will be displayed. For example:
ASPX:
<telerik:RadHtmlChart runat="server" ID="RadHtmlChart1" Width="600px" Height="400px">
    <PlotArea>
        <Series>
            <telerik:LineSeries Name="Product 1">
                <MarkersAppearance Visible="false" />
                <SeriesItems>
                    <telerik:CategorySeriesItem Y="15000" />
                    <telerik:CategorySeriesItem Y="23000" />
                    <telerik:CategorySeriesItem Y="10000" />
                </SeriesItems>
            </telerik:LineSeries>
        </Series>
    </PlotArea>
</telerik:RadHtmlChart>



Regards,
Danail Vasilev
Telerik
 

Check out the Telerik Platform - the only platform that combines a rich set of UI tools with powerful cloud services to develop web, hybrid and native mobile apps.

 
Tags
Chart (Obsolete)
Asked by
Benoit
Top achievements
Rank 1
Answers by
Danail Vasilev
Telerik team
Share this question
or