![]() | 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: | Cursor Tool doesn’t work properly in TeeChart.UWP | ||
|---|---|---|---|
| Product: | .NET TeeChart | Reporter: | sandra pazos <sandra> |
| Component: | WinPhone and WinStore | Assignee: | Steema Issue Manager <issuemanager> |
| Status: | IN_PROGRESS --- | ||
| Severity: | enhancement | CC: | chris |
| Priority: | Normal | ||
| Version: | TeeChart for .Net 4.1.2016.05125 | ||
| Target Milestone: | --- | ||
| Hardware: | PC | ||
| OS: | Windows | ||
| Chart Series: | --- | Delphi / C++ Builder RAD IDE Version: | |
CursortTool doesn’t work in TeeChart.UWP when the GestureOption property,is enabled. The code below shows the problem: private void InitializeChart() { tChart1.Aspect.View3D = false; tChart1.Header.Font.Size = 18; tChart1.Header.Alignment = TextAlignment.Left; tChart1.Panel.Gradient.Visible = false; tChart1.Walls.Visible = false; tChart1.Legend.Visible = true; tChart1.Axes.Bottom.Visible = true; tChart1.Axes.Bottom.TickOnLabelsOnly = false; tChart1.Axes.Bottom.Ticks.Length = 4; tChart1.Axes.Bottom.Ticks.Width = 1; tChart1.Axes.Left.AxisPen.Visible = false; tChart1.Axes.Left.Ticks.Visible = false; tChart1.Axes.Left.MinorTicks.Visible = false; Line line = new Line(tChart1.Chart); line.FillSampleValues(); CursorTool cursorTool = new CursorTool(tChart1.Chart); cursorTool.Active = true; cursorTool.Style = CursorToolStyles.ScopeOnly; cursorTool.Series = line; cursorTool.Snap = true; cursorTool.UseChartRect = true; }