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 1057 - Legend Scroll Bar Tool arrows don't keep the custom color you set.
Summary: Legend Scroll Bar Tool arrows don't keep the custom color you set.
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:
Keywords:
Depends on:
Blocks:
 
Reported: 2014-12-23 07:32 EST by sandra pazos
Modified: 2015-01-15 10:36 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 2014-12-23 07:32:25 EST
Legend Scroll Bar Tool arrows don’t keep the custom color you set and back to default color (black). Basically, you can set a certain (solid) color to the arrows, but every time when you click on these arrows or move the bar they become darker (the rgb values are decreased with 32) until the color eventually becomes black.  To reproduce the problem use code below: 
 private Steema.TeeChart.Styles.Line line1;
        private Steema.TeeChart.Tools.LegendScrollBar tool1; 
        private void InitializeChart()
        {
           tChart1.Aspect.View3D = false;
           line1 = new Steema.TeeChart.Styles.Line(tChart1.Chart);
           line1.FillSampleValues(100);
           tool1 = new Steema.TeeChart.Tools.LegendScrollBar(tChart1.Chart);
           tool1.ArrowBrush.Color = Color.Red; 
        }