JavaScript/jQuery Chart - size

Specifies the UI component's size in pixels.

Type:

Object

Default Value: undefined

The Chart's default size is width: 400px; height: 400px. You can specify custom width and height for the component:

  • Fixed
    Assign values to the size object's height and width properties.

  • Relative
    Specify a container for the component. The Chart occupies the container area.

NOTE
The size object has priority over the container.

Assign 0 to the size object's height and width properties to hide the Chart component.

index.js
  • $(function() {
  • $("#chartContainer").dxChart({
  • // ...
  • size: {
  • height: 300,
  • width: 600
  • }
  • });
  • });

Alternatively, you can use CSS to style the UI component's container:

index.js
styles.css
  • $(function() {
  • $("#chart").dxChart({
  • // ...
  • });
  • });
  • #chart {
  • 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