响应.重定向为MS图表
本文关键字:图表 MS 重定向 响应 | 更新日期: 2023-09-27 17:53:30
我有一个图表控件
现在我想要的功能是,如果用户点击图表,它将它带到一个新的页面,我需要发送一个值到该页。
我试过这个,但点击甚至不工作。
protected void Chart1_Click(object sender, ImageMapEventArgs e)
{
if (Label1.Text != "1")
{
Response.Redirect("~/Admin/Page2Chart.aspx?node=" + Label1.Text);
}
else
{
Response.Redirect("~/Admin/Page2Chart.aspx");
}
}
我知道我们可以在Html中放入URL,但我不能在其中放入条件....?
任何帮助都将不胜感激。
感谢<asp:Chart ID="Chart4" Height="202px" Width="360px" runat="server"
onclick="Chart4_Click" >
<Series>
<asp:Series ChartType="Pie" Name="Series1" Font="Microsoft Sans Serif, 10pt" >
</asp:Series>
</Series>
<ChartAreas>
<asp:ChartArea Name="ChartArea1">
</asp:ChartArea>
</ChartAreas>
<Legends>
<asp:Legend Enabled="true" TableStyle="Tall" IsTextAutoFit="False" Name="Default" BackColor="Transparent" Font="Trebuchet MS, 8.25pt, style=Bold">
</asp:Legend>
</Legends>
</asp:Chart>
你能贴出图表的设计视图吗?
chart4.Series["seriesname"].Url = "somechartorpage.aspx?"+label1.text;
chart4.Series["seriesname"].Points["name"].Url= "Detailedchart.aspx";