Hi, I have a chart with Tooltips that work fine when I hover over the points in the Splice Chart, but when I add the Zooming functionality by adding
<ClientSettings ScrollMode="Both" />
<Legend Visible="false"></Legend>
as you stated in the demo code I lose my Tooltips and also I get the Ajax animation symbol on all my charts which I don't want. Is there any way of losing this symbol and having Tooltips as well as Zooming ? I would really appreciate your help,
Thanks a lot,
Pete.
<ClientSettings ScrollMode="Both" />
<Legend Visible="false"></Legend>
as you stated in the demo code I lose my Tooltips and also I get the Ajax animation symbol on all my charts which I don't want. Is there any way of losing this symbol and having Tooltips as well as Zooming ? I would really appreciate your help,
Thanks a lot,
Pete.
5 Answers, 1 is accepted
0
Hello Pete,
Unfortunately it is not possible to use tooltips alongside the zooming and scrolling functionality. As for the background image -- you can customize it by overriding the following CssClass (this would disable the loading image):
Regards,
Manuel
the Telerik team
Instantly find answers to your questions at the new Telerik Support Center
Unfortunately it is not possible to use tooltips alongside the zooming and scrolling functionality. As for the background image -- you can customize it by overriding the following CssClass (this would disable the loading image):
<html xmlns="http://www.w3.org/1999/xhtml"> |
<head runat="server"> |
<title>Untitled Page</title> |
<style type="text/css"> |
.rchImgWrap div |
{ |
background : url() !important; |
} |
</style> |
</head> |
<body> |
<form id="form1" runat="server"> |
<asp:ScriptManager runat="server" ID="scriptManager"> |
</asp:ScriptManager> |
<telerik:RadChart ID="RadChart1" runat="server" AutoLayout="true"> |
<PlotArea> |
<XAxis MaxValue="5" MinValue="1" Step="1"> |
</XAxis> |
<YAxis MaxValue="3" Step="0.5" AxisMode="Extended"> |
</YAxis> |
<YAxis2 MaxValue="5" MinValue="1" Step="1"> |
</YAxis2> |
</PlotArea> |
<Series> |
<telerik:ChartSeries Name="Series 1" Type="Spline"> |
<Appearance> |
<PointMark Visible="true" FillStyle-MainColor="Red" FillStyle-FillType="Solid"></PointMark> |
</Appearance> |
<Items> |
<telerik:ChartSeriesItem YValue="5" Name="Item 20"> |
<ActiveRegion Tooltip="Test1" /> |
</telerik:ChartSeriesItem> |
<telerik:ChartSeriesItem YValue="2" Name="Item 100"> |
<ActiveRegion Tooltip="Test2" /> |
</telerik:ChartSeriesItem> |
<telerik:ChartSeriesItem YValue="1" Name="Item 100"> |
<ActiveRegion Tooltip="Test3" /> |
</telerik:ChartSeriesItem> |
<telerik:ChartSeriesItem YValue="3" Name="Item 20"> |
<ActiveRegion Tooltip="Test4" /> |
</telerik:ChartSeriesItem> |
<telerik:ChartSeriesItem YValue="1" Name="Item 20"> |
<ActiveRegion Tooltip="Test5" /> |
</telerik:ChartSeriesItem> |
<telerik:ChartSeriesItem YValue="4" Name="Item 100"> |
<ActiveRegion Tooltip="Test6" /> |
</telerik:ChartSeriesItem> |
</Items> |
</telerik:ChartSeries> |
</Series> |
<ClientSettings ScrollMode="Both" /> |
<Legend Visible="False"></Legend> |
</telerik:RadChart> |
Regards,
Manuel
the Telerik team
Instantly find answers to your questions at the new Telerik Support Center
0
Nicolaï
Top achievements
Rank 2
answered on 07 Apr 2009, 06:00 AM
And you can't set an activeregion.url either when scrolling is enabled..?
0
Hello Nicolai,
I am afraid that it is not possible to use tooltips alongside the zooming and scrolling functionality.
We are sorry for the caused inconvenience.
Greetings,
Dessy
the Telerik team
Check out Telerik Trainer , the state of the art learning tool for Telerik products.
I am afraid that it is not possible to use tooltips alongside the zooming and scrolling functionality.
We are sorry for the caused inconvenience.
Greetings,
Dessy
the Telerik team
Check out Telerik Trainer , the state of the art learning tool for Telerik products.
0
Madrinha
Top achievements
Rank 1
answered on 14 Apr 2010, 11:59 AM
Hi,
Can you confirm if with latest 2010.Q1 version the workaround to stop showing background image still works ?
I've try it and after upgrade the image is there again. On 2009.Q3 this was working just fine.
Thanks
Can you confirm if with latest 2010.Q1 version the workaround to stop showing background image still works ?
.rchImgWrap div |
{ |
background : url() !important; |
} |
I've try it and after upgrade the image is there again. On 2009.Q3 this was working just fine.
Thanks
0
Hi Eduardo,
The css has not been changed between the Q3.2009 and the Q1.2010 release. We tested the attached code and it successfully removed the loading animation image from the chart background -- please review the attached runnable sample application and let us know how we can observe the erroneous issue you are experiencing on your end.
Best wishes,
Freddie
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items.
The css has not been changed between the Q3.2009 and the Q1.2010 release. We tested the attached code and it successfully removed the loading animation image from the chart background -- please review the attached runnable sample application and let us know how we can observe the erroneous issue you are experiencing on your end.
Best wishes,
Freddie
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items.