Steema Issues Database

Note: 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.



Bug 1574 - Cursor Tool doesn’t work properly in TeeChart.UWP
Summary: Cursor Tool doesn’t work properly in TeeChart.UWP
Status: IN_PROGRESS
Alias: None
Product: .NET TeeChart
Classification: Unclassified
Component: WinPhone and WinStore (show other bugs)
Version: TeeChart for .Net 4.1.2016.05125
Hardware: PC Windows
: Normal enhancement
Target Milestone: ---
Assignee: Steema Issue Manager
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2016-07-05 10:20 EDT by sandra pazos
Modified: 2016-07-05 11:27 EDT (History)
1 user (show)

See Also:
Chart Series: ---
Delphi / C++ Builder RAD IDE Version:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description sandra pazos 2016-07-05 10:20:53 EDT
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;
}