Appearance and Styling

15 Dec 20171 minute to read

Theme

You can customize RadialSlider control style and the appearance by using available themes or cssClass property.

Theme

In order to apply styles to the RadialSlider control, refer to 2 files namely, ej.widgets.core.min.css and ej.theme.min.css. When you refer ej.web.all.min.css file, it is not necessary to include the files ej.widgets.core.min.css and ej.theme.min.css in your project, as ej.web.all.min.css is the combination of these two.

By default, there are 13 theme support available for RadialSlider component, namely:

  • flat-azure
  • flat-azure-dark
  • fat-lime
  • flat-lime-dark
  • flat-saffron
  • flat-saffron-dark
  • gradient-azure
  • gradient-azure-dark
  • gradient-lime
  • gradient-lime-dark
  • gradient-saffron
  • gradient-saffron-dark
  • bootstrap

CSS Class

RadialSlider control also allows you to customize its appearance using user-defined CSS. To apply custom themes you can use cssClass property, which sets the root class for RadialSlider theme.

Using this cssClass you can override the existing styles under the theme style sheet. In the following example, the value of cssClass property is set as “Purple-dark”. Purple-dark is added as root class to RadialSlider control at the runtime. From this root class, you can customize the RadialSlider appearance.

Add the following code in your HTML page to render the RadialSlider.

  • HTML
  • <div id="radialSlider">
            </div>
            <script>
                $("#radialSlider").ejRadialSlider({ innerCircleImageUrl:"chevron-right.png",cssClass:"Purple-dark" });
            </script>

    In the following style sheet the exiting theme style sheet file has been over-ridden using root class “Purple-dark”.

    Add the following code in your style section.

  • CSS
  • .Purple-dark{
                background-color:pink;
            }

    The following screenshot illustrates the output of the above code.