ZedGraph チャートにプロットされた各ポイントのラベルを表示するにはどうすればよいですか?
5270 次
2 に答える
8
そのサイトは現在ダウンしているため、これを行う方法の例を示すコード スニペットを次に示します。
myLine.GetRange(out other, out other, out minY, out maxY, false, false, myPane);
double Yinterval = Math.Abs(maxY - minY) / 25;
// Loop to add text labels to the points
for (int i = 0; i < tempPoints.Count; i++) {
// Get the pointpair
ZedGraph.PointPair pt = tempPoints[i];
// Create a text label from the Y data value
ZedGraph.TextObj text = new ZedGraph.TextObj(pt.Y.ToString(), pt.X, pt.Y + Yinterval,
ZedGraph.CoordType.AxisXYScale, ZedGraph.AlignH.Left, ZedGraph.AlignV.Center);
text.FontSpec.FontColor = tempHolder.Color;
text.ZOrder = ZedGraph.ZOrder.A_InFront;
// Hide the border and the fill
text.FontSpec.Border.IsVisible = false;
text.FontSpec.Fill.IsVisible = false;
text.FontSpec.Size = 10f;
text.FontSpec.Angle = 45;
string lblString = "name";
Link lblLink = new Link(lblString, "#", "");
text.Link = lblLink;
myPane.GraphObjList.Add(text);
}
于 2011-07-27T23:42:42.037 に答える
1
ポイントごとに、ラベル テキストでテキスト オブジェクトを作成し、グラフに追加します。
ポイント ラベルのデモは、次のことを示しています...
于 2009-05-02T20:37:19.210 に答える