JavaScript/jQuery Chart - size
Type:
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%;
- }
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.