我需要在C#中构建一个图形化列表计划可视化工具。实际上我必须在C#中重建this perfect tool。 Marey's Trains 图形必须是可缩放的,可滚动的,可打印/可导出为带有矢量图形元素的PDF。
你可以给我一些提示吗?我该怎么开始呢?我应该使用哪种库?尝试使用像OxyPlot这样的图形库是否值得?也许它不是最好的,因为特殊的轴和不规则的网格 - 正如我所想的那样。您的意见是什么?
答案 0 :(得分:1)
无论您使用哪种图表工具,一旦您需要特殊类型的显示,您将始终需要添加一些额外的编码。
以下是使用MSChart
控件的示例。
请注意,它对导出矢量格式有限制:
它可以导出到各种formats,包括3 EMF
种类型;但是只有一些应用程序可以实际使用它们不确定您使用的PDF库..!
如果您不能使用Emf
格式,那么您可以通过将Chart
控件设为非常大,导出到Png
然后生成Dpi
来获得不错的结果分辨率远大于保存后的默认屏幕分辨率。将其设置为600
或1200dpi
应该适用于大多数pdf用途..
现在让我们看一个例子:
一些注意事项:
我通过多种方式让生活更轻松。我只为一个方向编码而且我没有扭转公鸡,所以它只是自下而上。
我没有使用过真实的数据,但已经完成了。
我没有创建一个或多个类来保存电台数据;相反,我使用了一个非常简单的Tuple
。
我还没有创建DataTable
来保存列车数据。相反,我将它们组合起来并将它们即时添加到图表中。
我没有测试,但缩放和滚动也应该有效..
以下是保存我的电台数据的List<Tuple>
:
// station name, distance, type: 0=terminal, 1=normal, 2=main station
List<Tuple<string, double, int>> TrainStops = null;
以下是我设置图表的方法:
Setup24HoursAxis(chart1, DateTime.Today);
TrainStops = SetupTrainStops(17);
SetupTrainStopAxis(chart1);
for (int i = 0; i < 23 * 3; i++)
{
AddTrainStopSeries(chart1, DateTime.Today.Date.AddMinutes(i * 20),
17 - rnd.Next(4), i% 5 == 0 ? 1 : 0);
}
// this exports the image above:
chart1.SaveImage("D:\\trains.png", ChartImageFormat.Png);
这样每20分钟就有一趟列车,有14-17站,每5趟列车有一趟。
以下是我称之为的例程:
设置x轴以保存一天的数据非常简单。
public static void Setup24HoursAxis(Chart chart, DateTime dt)
{
chart.Legends[0].Enabled = false;
Axis ax = chart.ChartAreas[0].AxisX;
ax.IntervalType = DateTimeIntervalType.Hours;
ax.Interval = 1;
ax.Minimum = dt.ToOADate();
ax.Maximum = (dt.AddHours(24)).ToOADate();
ax.LabelStyle.Format = "H:mm";
}
创建具有随机距离的站点列表也非常简单。我制作了第1个和最后一个终端,每隔5个制作一个主站。
public List<Tuple<string, double, int>> SetupTrainStops(int count)
{
var stops = new List<Tuple<string, double, int>>();
Random rnd = new Random(count);
for (int i = 0; i < count; i++)
{
string n = (char)(i+(byte)'A') + "-Street";
double d = 1 + rnd.Next(3) + rnd.Next(4) + rnd.Next(5) / 10d;
if (d < 3) d = 3; // a minimum distance so the label won't touch
int t = (i == 0 | i == count-1) ? 0 : rnd.Next(5)==0 ? 2 : 1;
var ts = new Tuple<string, double, int>(n, d, t);
stops.Add(ts);
}
return stops;
}
现在我们有列车站,我们可以设置y轴:
public void SetupTrainStopAxis(Chart chart)
{
Axis ay = chart.ChartAreas[0].AxisY;
ay.LabelStyle.Font = new Font("Consolas", 8f);
double totalDist = 0;
for (int i = 0; i < TrainStops.Count; i++)
{
CustomLabel cl = new CustomLabel();
cl.Text = TrainStops[i].Item1;
cl.FromPosition = totalDist - 0.1d;
cl.ToPosition = totalDist + 0.1d;
totalDist += TrainStops[i].Item2;
cl.ForeColor = TrainStops[i].Item3 == 1 ? Color.DimGray : Color.Black;
ay.CustomLabels.Add(cl);
}
ay.Minimum = 0;
ay.Maximum = totalDist;
ay.MajorGrid.Enabled = false;
ay.MajorTickMark.Enabled = false;
}
这里需要注意几点:
Labels
间距的普通Interval
。 CustomLabels
。 0.1d
来创建小范围。Maximum
。再说一次:为了模仿你所展示的时间表,你必须在这里和那里做一些倒车.. CustomLabels
,正常关闭会自动关闭。由于我们在不规则间隔需要MajorGridlines
,我们也会关闭正常的。因此,我们必须自己画画。你可以看到并不是很难......:为此,我们编写了xxxPaint
个事件之一:
private void chart1_PostPaint(object sender, ChartPaintEventArgs e)
{
Axis ay = chart1.ChartAreas[0].AxisY;
Axis ax = chart1.ChartAreas[0].AxisX;
int x0 = (int) ax.ValueToPixelPosition(ax.Minimum);
int x1 = (int) ax.ValueToPixelPosition(ax.Maximum);
double totalDist = 0;
foreach (var ts in TrainStops)
{
int y = (int)ay.ValueToPixelPosition(totalDist);
totalDist += ts.Item2;
using (Pen p = new Pen(ts.Item3 == 1 ? Color.DarkGray : Color.Black,
ts.Item3 == 1 ? 0.5f : 1f))
e.ChartGraphics.Graphics.DrawLine(p, x0 + 1, y, x1, y);
}
// ** Insert marker drawing code (from update below) here !
}
请注意使用轴的ValueToPixelPosition
转换功能!
现在是最后一部分:如何添加Series
列车数据..:
public void AddTrainStopSeries(Chart chart, DateTime start, int count, int speed)
{
Series s = chart.Series.Add(start.ToShortTimeString());
s.ChartType = SeriesChartType.Line;
s.Color = speed == 0 ? Color.Black : Color.Brown;
s.MarkerStyle = MarkerStyle.Circle;
s.MarkerSize = 4;
double totalDist = 0;
DateTime ct = start;
for (int i = 0; i < count; i++)
{
var ts = TrainStops[i];
ct = ct.AddMinutes(ts.Item2 * (speed == 0 ? 1 : 1.1d));
DataPoint dp = new DataPoint( ct.ToOADate(), totalDist );
totalDist += TrainStops[i].Item2;
s.Points.Add(dp);
}
}
请注意,由于我的数据不包含实际到达/离开时间,因此我根据距离和一些速度因子计算出它们。当然,您会使用您的数据!
另请注意,我使用了Line
图表以及额外的Marker
个圈子。
另请注意,每个列车系列都可以轻松禁用/隐藏或重新带回。
让我们只展示快车:
private void cbx_ShowOnlyFastTrains_CheckedChanged(object sender, EventArgs e)
{
foreach (Series s in chart1.Series)
s.Enabled = !cbx_ShowOnlyFastTrains.Checked || s.Color == Color.Brown;
}
当然,对于强大的应用程序,你不会依赖于神奇的颜色;-)
相反,您可以将Tag
对象添加到Series
以保存各种列车信息。
更新:您注意到已绘制的GridLines
覆盖了Markers
。你可以在这里插入这段代码(**);它将在Markers
事件结束时所有者绘制xxxPaint
。
int w = chart1.Series[0].MarkerSize;
foreach(Series s in chart1.Series)
foreach(DataPoint dp in s.Points)
{
int x = (int) ax.ValueToPixelPosition(dp.XValue) - w / 2;
int y = (int) ay.ValueToPixelPosition(dp.YValues[0])- w / 2;
using (SolidBrush b = new SolidBrush(dp.Color))
e.ChartGraphics.Graphics.FillEllipse(b, x, y, w, w);
}
特写: