gpt4 book ai didi

c# - 如何在 C# 中使图表图例项具有交互性

转载 作者:太空狗 更新时间:2023-10-30 00:41:54 28 4
gpt4 key购买 nike

我使用 win 表单 (C#.Net Framework 3.5) 在运行时创建了一个图表。

enter image description here

我想让这个图表的图例项具有交互性。

我的要求是,当用户点击图例中的颜色项时 - 应该打开一个颜色托盘,当用户从托盘中选择一种颜色时,所选颜色应该应用于外部系列数据项。

我如何实现这一目标?简而言之,如何为图例项添加点击事件处理程序?

感谢任何帮助。注意

最佳答案

终于找到了答案...在这里发布代码,以便对其他人有所帮助。

private void HeapStatsChart_MouseDown(object sender, System.Windows.Forms.MouseEventArgs e)
{
HitTestResult result = HeapStatsChart.HitTest(e.X, e.Y);
if (result != null && result.Object != null)
{
// When user hits the LegendItem
if (result.Object is LegendItem)
{
// Legend item result
LegendItem legendItem = (LegendItem)result.Object;
ColorDialog Colour = new ColorDialog();
if (Colour.ShowDialog() == DialogResult.OK)
{
HeapChartColorPref[Convert.ToInt16(legendItem.Name.Substring(4))].color = Colour.Color;
GenerateHeapStatsChart(HeapChartColorPref);
}
}
}
}

关于c# - 如何在 C# 中使图表图例项具有交互性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18202966/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com