TCircularGauge.NumericGauge

TCircularGauge.NumericGauge
TCircularGauge

property NumericGauge: TNumericGauge;

Unit
TeeCircularGauge

Description
\sa\sl\slmultAccesses the attributes of the Numeric Gauge. It can be used to draw a numeric gauge inside the Circular gauge series allowing it to be customized as if it were outside the circular one.


Example:

procedure TCircularGaugeEmbeddedForm.SetUpNGauge;
var Axis: TChartAxis;

begin
Axis: =TChartAx is.Create(Chart1);
Axis.Horizontal:=True ;
NumericGauge:=TNume ricGa uge.Create(Chart1);
Chart1.AddSeries(NumericGauge);
NumericGauge.HorizAxis:=aCustomHorizAxis;
NumericGauge.Embedded:=True;
NumericGauge.CustomHorizAxis:=Axis;
NumericGauge.TextMarker.Active:=False;
NumericGauge.UnitsMarker.Active:=False;
NumericGauge.ValueFormat:='##00.0';
NumericGauge.ValueMarker.Shape.Font.Size:=14;
end;