Steema Issues Database

Note: 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.



Bug 1227 - Multiple hand or needle for CircularGauge series
Summary: Multiple hand or needle for CircularGauge series
Status: RESOLVED NOTABUG
Alias: None
Product: .NET TeeChart
Classification: Unclassified
Component: Series (show other bugs)
Version: unspecified
Hardware: PC Windows
: --- enhancement
Target Milestone: ---
Assignee: Steema Issue Manager
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2015-06-05 10:02 EDT by narcís calvet
Modified: 2015-06-05 10:17 EDT (History)
0 users

See Also:
Chart Series: ---
Delphi / C++ Builder RAD IDE Version:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description narcís calvet 2015-06-05 10:02:20 EDT
TeeChart VCL/FMX supports multiple hands (needles) for CircularGauge series. This is not available in TeeChart .NET.
Comment 1 narcís calvet 2015-06-05 10:17:56 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;