![]() | 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: | Area series creation resets Gradient StartColor | ||
|---|---|---|---|
| Product: | .NET TeeChart | Reporter: | christopher ireland <chris> |
| Component: | Series | Assignee: | Steema Issue Manager <issuemanager> |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | ||
| Priority: | --- | ||
| Version: | unspecified | ||
| Target Milestone: | --- | ||
| Hardware: | PC | ||
| OS: | Windows | ||
| Chart Series: | --- | Delphi / C++ Builder RAD IDE Version: | |
Use this code to replicate: private void InitializeChart() { Area area = new Area(); area.AreaBrush.Gradient.StartColor = Color.GreenYellow; area.AreaBrush.Gradient.MiddleColor = Color.BlueViolet; area.AreaBrush.Gradient.EndColor = Color.Crimson; area.AreaBrush.Gradient.UseMiddle = true; area.AreaBrush.Gradient.Visible = true; area.FillSampleValues(); tChart1.Series.Add(area); }