Angular CircularGauge - size
The UI component occupies its container's entire area by default. Use the size object to specify the UI component's size if it should be different from that of its container. Assign 0 to size object's height and width properties to hide the UI component.
app.component.html
app.component.ts
app.module.ts
- <dx-circular-gauge ... >
- <dxo-size
- [height]="300"
- [width]="600">
- </dxo-size>
- </dx-circular-gauge>
- import { Component } from '@angular/core';
- @Component({
- selector: 'app-root',
- templateUrl: './app.component.html',
- styleUrls: ['./app.component.css']
- })
- export class AppComponent {
- // ...
- }
- import { BrowserModule } from '@angular/platform-browser';
- import { NgModule } from '@angular/core';
- import { AppComponent } from './app.component';
- import { DxCircularGaugeModule } from 'devextreme-angular';
- @NgModule({
- declarations: [
- AppComponent
- ],
- imports: [
- BrowserModule,
- DxCircularGaugeModule
- ],
- providers: [ ],
- bootstrap: [AppComponent]
- })
- export class AppModule { }
Alternatively, you can style the UI component's container using CSS:
app.component.html
app.styles.css
- <dx-circular-gauge ...
- id="circularGauge">
- </dx-circular-gauge>
- #circularGauge {
- width: 85%;
- height: 70%;
- }
Feel free to share topic-related thoughts here.
If you have technical questions, please create a support ticket in the DevExpress Support Center.
Thank you for the feedback!
If you have technical questions, please create a support ticket in the DevExpress Support Center.