The documentation site has no information about changing the dimensions of the Gauges directly.
It seems like you're unable to change the Sizes or Dimensions of the Gauges created by Kendo. How can you change the size of the Guages?
The documentation site has no information about changing the dimensions of the Gauges directly.
It seems like you're unable to change the Sizes or Dimensions of the Gauges created by Kendo. How can you change the size of the Guages?
Reference:
https://www.telerik.com/kendo-angular-ui/components/gauges/styling/
You can change the inline-styles of your gauges like so:
<kendo-radialgauge style="width: 300px; height: 300px;">
</kendo-radialgauge>
Changing the Width and Height Inline Styles, or by using a Stylesheet in your Website, you can change the size of a gauge.
Since these are custom HTML Elements that are Processed by kendo, I recommend adding an ID or Class to your pre-processed element, and selecting the id or class with css to style it later on.