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 1790 - The Marktips tool doesn’t work properly for horizontal Bar series, when the chart is set to 3D view
Summary: The Marktips tool doesn’t work properly for horizontal Bar series, when the c...
Status: RESOLVED FIXED
Alias: None
Product: .NET TeeChart
Classification: Unclassified
Component: Tools (show other bugs)
Version: unspecified
Hardware: PC Windows
: Normal normal
Target Milestone: ---
Assignee: Steema Issue Manager
URL: http://www.teechart.net/support/viewt...
Keywords:
Depends on:
Blocks:
 
Reported: 2017-02-16 09:56 EST by sandra pazos
Modified: 2017-02-27 10:31 EST (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 2017-02-16 09:56:34 EST
The Marktips tool doesn’t work properly for horizontal Bar series, when the chart is set to 3D view 
The code below shows the problem: 

    Steema.TeeChart.Styles.HorizBar hbar1;
        Steema.TeeChart.Tools.MarksTip marktip;
        private void InitializeChart()
        {
            tChart1.Aspect.View3D = true;
            hbar1 = new Steema.TeeChart.Styles.HorizBar(tChart1.Chart);
            marktip = new Steema.TeeChart.Tools.MarksTip(tChart1.Chart);
            marktip.Series = hbar1;
            marktip.Style = Steema.TeeChart.Styles.MarksStyles.Value;
            hbar1.Color = Color.AliceBlue;
            hbar1.Marks.Visible = false;
            
            hbar1.Add(0.8, 5, "High Net Worth");
            hbar1.Add(1.62, 4, "Global Banking");
            hbar1.Add(0.65, 3, "Corporate Banking");
            hbar1.Add(1.2, 2, "Operations");
            hbar1.Add(1.4, 1, "Retail");
            hbar1.Add(3.0, 0, "Headquarters");

            tChart1.Axes.Bottom.SetMinMax(0, 2.5);
            tChart1.Axes.Bottom.Increment = 0.5;
}