![]() | 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: | Caching impeding designtime changes when modifying gardient direction in Bar fill gradients | ||
|---|---|---|---|
| Product: | .NET TeeChart | Reporter: | marc meumann <marc> |
| Component: | Chart | Assignee: | Steema Issue Manager <issuemanager> |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | CC: | chris |
| Priority: | --- | ||
| Version: | unspecified | ||
| Target Milestone: | --- | ||
| Hardware: | PC | ||
| OS: | Windows | ||
| Chart Series: | --- | Delphi / C++ Builder RAD IDE Version: | |
|
Description
marc meumann
2015-03-03 05:51:13 EST
The following code works as expected with UseCaches either true or false:
Bar series = new Bar();
private void InitializeChart()
{
tChart1.Aspect.View3D = false;
tChart1.Series.Add(series);
series.FillSampleValues();
series.Gradient.Visible = true;
//Utils.UseCaches = false;
EditorUtils.FillEnum(comboBox1, typeof(LinearGradientMode));
}
private void comboBox1_SelectedIndexChanged(object sender, EventArgs e)
{
series.Gradient.Direction = (LinearGradientMode)comboBox1.SelectedItem;
}
Also, using the Chart Editor at runtime means works as expected when changing the Gradient Direction. The Chart Editor at designtime seems to be the only area in which this issue occurs.
Last comment inaccurate, code snippet can reproduce issue with Utils.Caches = true. |