![]() | 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: | Multiple hand or needle for CircularGauge series | ||
|---|---|---|---|
| Product: | .NET TeeChart | Reporter: | narcís calvet <narcis> |
| Component: | Series | Assignee: | Steema Issue Manager <issuemanager> |
| Status: | RESOLVED NOTABUG | ||
| Severity: | enhancement | ||
| Priority: | --- | ||
| Version: | unspecified | ||
| Target Milestone: | --- | ||
| Hardware: | PC | ||
| OS: | Windows | ||
| Chart Series: | --- | Delphi / C++ Builder RAD IDE Version: | |
|
Description
narcís calvet
2015-06-05 10:02:20 EDT
They can be used as it’s done internally for ClockGauge series, for example:
Steema.TeeChart.Styles.CircularGauge gauge1 = new Steema.TeeChart.Styles.CircularGauge(tChart1.Chart);
gauge1.Value = 56;
Steema.TeeChart.Styles.GaugeSeriesPointer extraNeedle = gauge1.AddHand(10);
extraNeedle.Gradient.Visible = true;
extraNeedle.Gradient.StartColor = Color.Navy;
extraNeedle.Gradient.EndColor = Color.Black;
extraNeedle.Shadow.Color = Color.Silver;
extraNeedle.Shadow.Transparency = 70;
extraNeedle.Shadow.Size = new Size(2, 2);
gauge1.HandOffsets[1] = 20;
|