This is a migrated thread and some comments may be shown as answers.

ASP.NET Quadrant/Semi-Circle Gauge

1 Answer 82 Views
Gauge
This is a migrated thread and some comments may be shown as answers.
southwynd
Top achievements
Rank 1
southwynd asked on 14 Dec 2012, 07:35 PM

Is there a way to configure the RadRadialGauge for quadrant-style or semi-circle gauges.  The Silverlight gauges have this option, but I don't see it for the ASP.NET gauge controls.

http://www.telerik.com/help/silverlight/radial-scale-semicircle-gauge.html
http://www.telerik.com/help/silverlight/radial-scale-quadrant-style-gauge.html

1 Answer, 1 is accepted

Sort by
0
Danail Vasilev
Telerik team
answered on 15 Dec 2012, 03:38 PM
Hi,

You can configure the RadRadialGauge, so that its style looks like the SilverLight's through StartAngle and EndAngle properties, exposed by the Scale of the Gauge. For example if you want Semicircle Gauge you can set:
  • StartAngle="0" EndAngle="180" - North orientation
  • StartAngle="180" EndAngle="360" - South orientation
  • StartAngle="90" EndAngle="270" - East orientation
  • StartAngle="270" EndAngle="450" - West orientation
The same logic can be applied for Quadrant-style Gauge:
  • StartAngle="0" EndAngle="90" - North-West orientation
  • StartAngle="90" EndAngle="180" - North-East orientation
  • StartAngle="180" EndAngle="270" - South-East orientation
  • StartAngle="270" EndAngle="360" - South-West orientation
You can refer to the full list of Gauge' server-side API here.

Greetings,
Danail Vasilev
the Telerik team
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to their blog feed now.
Tags
Gauge
Asked by
southwynd
Top achievements
Rank 1
Answers by
Danail Vasilev
Telerik team
Share this question
or