![]() | 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: | CircularGauge Ticks & MinorTicks limited to Pointer styles | ||
|---|---|---|---|
| Product: | .NET TeeChart | Reporter: | christopher ireland <chris> |
| Component: | Series | Assignee: | Steema Issue Manager <issuemanager> |
| Status: | RESOLVED FIXED | ||
| Severity: | enhancement | ||
| Priority: | --- | ||
| Version: | unspecified | ||
| Target Milestone: | --- | ||
| Hardware: | PC | ||
| OS: | Windows | ||
| URL: | http://www.teechart.net/support/viewtopic.php?p=73805#p73805 | ||
| Chart Series: | --- | Delphi / C++ Builder RAD IDE Version: | |
| Attachments: | screenshot | ||
|
Description
christopher ireland
2017-05-18 12:26:25 EDT
New GaugeSeriesPointer.Line property, e.g.
private void InitializeChart()
{
CircularGauge series = new CircularGauge(tChart1.Chart);
series.FillSampleValues();
series.MinorTickDistance = 0;
series.MinorTicks.Visible = true;
series.MinorTicks.Style = GaugePointerStyles.Line;
series.MinorTicks.Pen.Color = Color.Fuchsia;
series.MinorTicks.Pen.Width = 3;
series.MinorTicks.VertSize = 7;
}
See screenshot for use at designtime.
Created attachment 766 [details]
screenshot
|