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

Summary: The Marktips tool doesn’t work properly for horizontal Bar series, when the chart is set to 3D view
Product: .NET TeeChart Reporter: sandra pazos <sandra>
Component: ToolsAssignee: Steema Issue Manager <issuemanager>
Status: RESOLVED FIXED    
Severity: normal CC: chris
Priority: Normal    
Version: unspecified   
Target Milestone: ---   
Hardware: PC   
OS: Windows   
URL: http://www.teechart.net/support/viewtopic.php?f=4&t=16430&sid=3ff1096094dc0da13a9cb08d650e1d26
Chart Series: --- Delphi / C++ Builder RAD IDE Version:

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;
}