![]() | Steema Issues DatabaseNote: This database is for bugs and wishes only. For technical support help, if you are a customer please visit our online forums;otherwise you can use StackOverflow. Before using this bug-tracker we recommend a look at this document, Steema Bug Fixing Policy. |
| Summary: | an error with LinePoint in demoProjectWPF | ||
|---|---|---|---|
| Product: | .NET TeeChart | Reporter: | Shinobu Nagai <nagai> |
| Component: | Examples Demos | Assignee: | Steema Issue Manager <issuemanager> |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | CC: | chris, sandra |
| Priority: | --- | ||
| Version: | TeeChart.NET 2014 4.1.2014.12154 | ||
| Target Milestone: | --- | ||
| Hardware: | PC | ||
| OS: | Windows | ||
| Chart Series: | --- | Delphi / C++ Builder RAD IDE Version: | |
| Attachments: |
select LinePoint
error message |
||
|
Description
Shinobu Nagai
2015-01-09 01:29:05 EST
Created attachment 381 [details]
select LinePoint
Created attachment 382 [details]
error message
The problem is produced in CanvasWPF class, concretely in the Polygon(bool isStroked, params Point[] p) method when is tried to use DrawGeometry. See code below:
...
public void Polygon(bool isStroked, params Point[] p)
{
StreamGeometry geom = GetPathGeometry(p, isStroked);
if (geom != null)
{
PushGuidelines(p);
g.DrawGeometry(Brush.DrawingBrush, Pen.DrawingPen, geom);
PopGuidelines();
}
}
...
|