Completed
Last Updated: 24 Jun 2022 12:52 by ADMIN
ADMIN
Marin Bratanov
Created on: 24 Dec 2012 12:48
Category: Gauge
Type: Bug Report
1
IMPROVE The appearance of RadGauge in RTL mode
There are some issues with the appearance of the gauges in RTL mode. They vary across browsers.

An easy fix is to add a CSS class to each of them and force direction: ltr:

<telerik:RadRadialGauge CssClass="rtlFix" ID="radialGauge1" runat="server" Width="272px" Height="272px">
    . . . . .
</telerik:RadRadialGauge>

.rtlFix
{
    direction: ltr;
}

If you need to swap the places of the min and max value the Reverse property of the Scale inner tag must be set to true.
0 comments