我正在使用 asp.net 图表控件,我想使用图表单击事件来获取deptId
条形图中条形单击的值。
<Series>
<asp:Series Name="Tour" ChartType="Column" ChartArea="MainChartArea" PostBackValue="#VALX">
</asp:Series>
<asp:Series Name="Inspection" ChartType="Column" ChartArea="MainChartArea" PostBackValue="#VALX">
</asp:Series>
<asp:Series Name="NightHalt" ChartType="Column" ChartArea="MainChartArea" PostBackValue="#VALX">
</asp:Series>
</Series>
我正在使用部门名称在 X 轴上显示,但我想捕获deptid
图表点击事件。在上面的标记中,我 #VALX
在系列postback
事件中使用,但它在点击事件中给了我部门名称
protected void AllDepartmentComparisonBarChart_Click(object sender, ImageMapEventArgs e)
{
e.PostBackValue;
}