![]() | 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: | Function series marks aren't displayed | ||
|---|---|---|---|
| Product: | .NET TeeChart | Reporter: | Shinobu Nagai <nagai> |
| Component: | Series | Assignee: | Steema Issue Manager <issuemanager> |
| Status: | RESOLVED NOTABUG | ||
| Severity: | normal | CC: | sandra |
| Priority: | --- | ||
| Version: | unspecified | ||
| Target Milestone: | --- | ||
| Hardware: | PC | ||
| OS: | Windows | ||
| Chart Series: | --- | Delphi / C++ Builder RAD IDE Version: | |
|
Description
Shinobu Nagai
2016-04-27 00:29:43 EDT
Hello Nagai,
I would like inform you it isn't a bug. The problem is resolved setting the SoftClip property to false. The code below shows how:
tChart1 = new Steema.TeeChart.TChart();
this.Text = tChart1.ProductVersion;
this.Controls.Add(tChart1);
tChart1.Left = 100;
tChart1.Top = 50;
tChart1.Width = 600;
tChart1.Height = 400;
Steema.TeeChart.Styles.FastLine series1 = new Steema.TeeChart.Styles.FastLine(tChart1.Chart);
Steema.TeeChart.Styles.Line line1 = new Steema.TeeChart.Styles.Line(tChart1.Chart);
Steema.TeeChart.Functions.Average av1 = new Steema.TeeChart.Functions.Average();
series1.FillSampleValues(10);
line1.DataSource = series1;
line1.Function = av1;
//Marks
series1.Marks.Visible = true;
line1.Marks.Visible = true;
line1.Marks.SoftClip = false;
Thanks in advance,
Regards
Let me make sure once again. For example, when a source series is Bar or Point series, a fuction's marks can be displayed by just marking the Visible checkbox. However, when a source series is FastLine or Line series, it's required to set the SoftClip to False by code to show the fuction's marks. Is it correct? |