Angular CircularGauge - size

Specifies the UI component's size in pixels.

Selector: dxo-size
Type:

Object

Default Value: undefined

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%;
  • }

height

Specifies the height of the UI component in pixels.

Type:

Number

Default Value: undefined

width

Specifies the width of the UI component in pixels.

Type:

Number

Default Value: undefined