我正在使用System.Web.UI.DataVisualization.Charting
在我的应用程序中构建图表。
我需要某些文本元素(例如Legends)来包含上标文本。
我该怎么做?
到目前为止,我已尝试使用HTML标记,但它无法识别它们 - 标记按原样显示。我也找不到任何bool
属性来允许HTML格式的字符串。
答案 0 :(得分:1)
不幸的是,没有任何内置功能 唯一的方法是使用一些支持复杂格式的渲染器处理PostPaint事件并绘制自己的文本。
例如,您可以使用能够在Graphics对象上绘制html的HtmlRenderer。
以下是一个使用示例:
public Form1()
{
InitializeComponent();
// subrscribe PostPaint event
this.chart1.PostPaint += new EventHandler<ChartPaintEventArgs>(chart1_PostPaint);
// fill the chart with fake data
var values = Enumerable.Range(0, 10).Select(x => new { X = x, Y = x }).ToList();
this.chart1.Series.Clear();
this.chart1.DataSource = values;
// series name will be replaced
var series = this.chart1.Series.Add("SERIES NAME");
series.XValueMember = "X";
series.YValueMembers = "Y";
}
void chart1_PostPaint(object sender, ChartPaintEventArgs e)
{
var cell = e.ChartElement as LegendCell;
if (cell != null && cell.CellType == LegendCellType.Text)
{
// get coordinate of cell rectangle
var rect = e.ChartGraphics.GetAbsoluteRectangle(e.Position.ToRectangleF());
var topLeftCorner = new PointF(rect.Left, rect.Top);
var size = new SizeF(rect.Width, rect.Height);
// clear the original text by coloring the rectangle (yellow just to highlight it...)
e.ChartGraphics.Graphics.FillRectangle(Brushes.Yellow, rect);
// prepare html text (font family and size copied from Form.Font)
string html = string.Format(System.Globalization.CultureInfo.InvariantCulture,
"<div style=\"font-family:{0}; font-size:{1}pt;\">Series <sup>AAA</sup></div>",
this.Font.FontFamily.Name,
this.Font.SizeInPoints);
// call html renderer
HtmlRenderer.HtmlRender.Render(e.ChartGraphics.Graphics, html, topLeftCorner, size);
}
}
这是结果的快照: