Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/jquery/74.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Jquery 如何在图表控件中添加放大/缩小功能_Jquery_Asp.net_Charts_Mschart_Microsoft Chart Controls - Fatal编程技术网

Jquery 如何在图表控件中添加放大/缩小功能

Jquery 如何在图表控件中添加放大/缩小功能,jquery,asp.net,charts,mschart,microsoft-chart-controls,Jquery,Asp.net,Charts,Mschart,Microsoft Chart Controls,我已经使用microsoft图表控件创建了图表 下面是资料 <asp:Chart ID="dntdata" runat="server" Height="130px" Width="134px" Visible="false"> <Series> <asp:Series Name="Series1" ChartType="Doughnut" IsValueShownAsLabel="True" LabelFo

我已经使用microsoft图表控件创建了图表

下面是资料

 <asp:Chart ID="dntdata" runat="server" Height="130px" Width="134px" Visible="false">
            <Series>
                <asp:Series Name="Series1" ChartType="Doughnut" IsValueShownAsLabel="True" LabelForeColor="White" Font="Verdana,5pt">
                    <Points>
                    </Points>
                </asp:Series>

            </Series>
            <ChartAreas>
                <asp:ChartArea Name="ChartArea1" Area3DStyle-Enable3D="True">
                </asp:ChartArea>
            </ChartAreas>
        </asp:Chart>

我需要在此图表图像中添加-放大/缩小功能。 请告诉我如何才能做到这一点

和我分享一些东西会很有帮助的

如果有人可以通过JQUERY实现,那么也可以


谢谢

在我看来,您可以使用单个数据点的URL属性(此属性:

这样,您可以定义一个目标URL,当用户单击数据点时调用该URL,然后您可以为所选点呈现详细的图表

希望有帮助, 克里斯