我正在绘制xy点图。我需要选择标记大小,使得点不会相互重叠,这取决于图表区域,总xy点数和X轴和Y轴上点之间的最小间隔。
目前我这样做:
int marginWidth = chart1.Size.Width;
int marginHeight = chart1.Size.Height;
chart1.Series[0].MarkerSize = (((marginWidth * marginHeight) / (marginWidth + marginHeight)) /18)
18只是大约100 xy点的校准值。但显然,当点数增加时,需要降低标记值以获得更好的可见性。
任何人都可以为我指导一个逻辑吗?
答案 0 :(得分:0)
我看到一个“简单”的解决方案:根据您的数据设置标记大小。因此,您应该将chart1.Series [0] .Count或类似的东西放在“18”而不是“18”。
答案 1 :(得分:0)
试试这个(计算两个标记之间的距离) Markersize =距离
//chart object PrePaint event...
private void chart1_PrePaint(object sender, ChartPaintEventArgs e)
{
//get the PixelPosition of first Marker
double X1 = chart1.ChartAreas[0].AxisX.ValueToPixelPosition(1); //X
double Y1 = chart1.ChartAreas[0].AxisY.ValueToPixelPosition(1); //Y
//get the PixelPosition of second Marker(X-Axis)
double X2 = chart1.ChartAreas[0].AxisX.ValueToPixelPosition(2); //X
double Y2 = chart1.ChartAreas[0].AxisY.ValueToPixelPosition(1); //Y
//get the PixelPosition of second Marker(Y-Axis)
double X3 = chart1.ChartAreas[0].AxisX.ValueToPixelPosition(1); //X
double Y3 = chart1.ChartAreas[0].AxisY.ValueToPixelPosition(2); //Y
//Calculate the Distance by Pythagoras (c² = a² + b²)
//=> a² = (X1 - X2)² && b² = (Y1-Y2)²
//Sorry is in german but the video explain
//http://matheguru.com/lineare-algebra/224-abstand-zwischen-zwei-punkten.html
double disctanceX = Math.Sqrt(Math.Pow(X1 - X2, 2) + Math.Pow(Y1 - Y2, 2));
double disctanceY = Math.Sqrt(Math.Pow(X1 - X3, 2) + Math.Pow(Y1 - Y3, 2));
//limit the marker at smaller value
if (disctanceX < disctanceY)
{
//cut the decimals other routines are possible
chart1.Series[0].MarkerSize = (int) Math.Ceiling(disctanceX);
}
else
{
chart1.Series[0].MarkerSize = (int) Math.Ceiling(disctanceY);
}
}