Hello,
I want to implement your Chart control with zooming and panning option. Currently I try too use code from your samples but i reduced .aspx code to:
<script type="text/javascript">
Sys.WebForms.PageRequestManager.getInstance().add_beginRequest(BeginRequestHandler);
Sys.WebForms.PageRequestManager.getInstance().add_endRequest(EndRequestHandler);
//Before callback event handler
function BeginRequestHandler(sender, args) {
Popup.ShowPopup();
}
//After callback event handler
function EndRequestHandler(sender, args) {
Popup.HidePopup();
}
</script>
<syncfusion:ChartWebControl ID="ChartWebControl2" runat="server" Height="392px" Style="left: 1px;
top: 0px" Width="572px" ShowLegend="False" EnablePostbacks="False" EnableXZooming="True"
EnableYZooming="True" BorderStyle="Solid">
<ChartArea ID="ChartArea">
</ChartArea>
<Legend Visible="False"></Legend>
</syncfusion:ChartWebControl>
<syncfusion:WaitingPopup ID="WaitingPopup1" runat="server" Height="50px" Width="125px"
AutoFormat="BlackCircles" ClientObjectId="Popup" DisabledBackgroundColor="252, 235, 217"
DisableOnShowElementID="ChartWebControl1" Alignment="MiddleCentre" Font-Bold="True"
ForeColor="#5E3000">
</syncfusion:WaitingPopup>
When I place this code inside controls like <telerik:RadTabStrip> or after <ajax:CollapsiblePanelExtender> they stop working, can't change tab or collapse view, and chart don't have zoom or panning option available.
Do you have any suggestion inside what i should put JS, Chart and Waiting Popup so it only affects Chart and don't have effect on other controls.
Thank you,
B.Bocian