gpt4 book ai didi

c# - 如何在 MS 图表中显示包含各种数据的工具提示

转载 作者:太空宇宙 更新时间:2023-11-03 12:23:28 24 4
gpt4 key购买 nike

我正在用 C# 开发蜡烛图。

我一直致力于使用当前数据 GridView 中的数据创建蜡烛图。

enter image description here

此外,当我将光标放在图表的蜡烛点上时,我想显示 datagridview 的信息(开盘价、收盘价、最高价、最低价)。 (见图)

当前开发的源。

    DataTable table_ChartData = new DataTable();
table_ChartData.Columns.Add("Id");
table_ChartData.Columns.Add("Open");
table_ChartData.Columns.Add("Close");
table_ChartData.Columns.Add("High");
table_ChartData.Columns.Add("Low");
table_ChartData.Columns.Add("Day");
dataGridView1.DataSource = table_ChartData;

chart1.ChartAreas["ChartArea1"].AxisX.MajorGrid.LineWidth = 1;
chart1.ChartAreas["ChartArea1"].AxisY.MajorGrid.LineWidth = 1;
chart1.ChartAreas["ChartArea1"].AxisY.Maximum = max;
chart1.ChartAreas["ChartArea1"].AxisY.Minimum = min;

chart1.Series["Daily"].XValueMember = "Day";
chart1.Series["Daily"].YValueMembers = "High,Low,Open,Close";
chart1.Series["Daily"].XValueType = System.Windows.Forms.DataVisualization.Charting.ChartValueType.Date;

chart1.Series["Daily"].CustomProperties = "PriceDownColor=Blue,PriceUpColor=Red";
chart1.Series["Daily"]["OpenCloseStyle"] = "Triangle";
chart1.Series["Daily"]["ShowOpenClose"] = "Both";

chart1.DataSource = table_ChartData;
chart1.DataBind();

private void chart1_MouseMove(object sender, MouseEventArgs e)
{

Point mousePoint = new Point(e.X, e.Y);
chart1.ChartAreas[0].CursorX.SetCursorPixelPosition(mousePoint, true);
chart1.ChartAreas[0].CursorY.SetCursorPixelPosition(mousePoint, true);`

var pos = e.Location;
if (prevPosition.HasValue && pos == prevPosition.Value)
return;
tooltip.RemoveAll();
prevPosition = pos;
var results = chart1.HitTest(pos.X, pos.Y, false, ChartElementType.DataPoint); // set ChartElementType.PlottingArea for full area, not only DataPoints
foreach (var result in results)
{
if (result.ChartElementType == ChartElementType.DataPoint) // set ChartElementType.PlottingArea for full area, not only DataPoints
{
var yVal = result.ChartArea.AxisY.PixelPositionToValue(pos.Y);
tooltip.Show(((int)yVal).ToString(), chart1, pos.X, pos.Y - 15);
}
}

}

感谢您的帮助。谢谢:)

最佳答案

您正在 MouseMove 中创建 ToolTips;这是一种方法,但最简单的方法是在创建 DataPoints 时通过设置 DataPoint.Tooltip 属性让图表完成工作..:

DataPoint dp = new DataPoint (..);
dp.ToolTip = "x=" + dp.XValue + "\n high=" + dp.YValues[0]+ "\n low=" + dp.YValues[1] + ..;
yourSeries.Points.Add(dp);

.. 或者,如果点是 DataBound,要么在绑定(bind)后立即添加 ToolTips,要么将它们包含在绑定(bind)本身中。

请注意,只有部分 various data binding methods 允许您绑定(bind)“扩展图表属性”,例如工具提示。 Points.DataBind 被明确提及。这意味着您需要为数据源中的工具提示准备一个字段,因为我知道没有办法在 otherField 字符串中编写连接表达式..

如果您的数据位于具有以下字段的 DataTable 中,您可以使用如下语法进行绑定(bind):

var enumerableTable = (dt as System.ComponentModel.IListSource).GetList();
yourSeries.Points.DataBind(enumerableTable, "x-col",
"highField, lowField..", "Tooltip=tooltipField");

如果您想在 MouseMove 中执行此操作,您可以轻松获得对您结束的 DataPoint 的引用(如果有的话),并像上面那样使用它的所有值..:

DataPoint dp = null;
if (results.PointIndex >= 0 && results.ChartElementType == ChartElementType.DataPoint)
{
dp = results.Series.Points[hitt.PointIndex];
string tText = "x=" + dp.XValue + "\n high=" +
dp.YValues[0]+ "\n low=" + dp.YValues[1] + ..;
..
}

请注意,HitTest 结果是一个具有多个属性的对象。无需循环!

关于c# - 如何在 MS 图表中显示包含各种数据的工具提示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46212740/

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