enum GraphWidgetView
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.CloudWatch.GraphWidgetView |
![]() | software.amazon.awscdk.services.cloudwatch.GraphWidgetView |
![]() | aws_cdk.aws_cloudwatch.GraphWidgetView |
![]() | @aws-cdk/aws-cloudwatch » GraphWidgetView |
Types of view.
Example
declare const dashboard: cloudwatch.Dashboard;
dashboard.addWidgets(new cloudwatch.GraphWidget({
// ...
view: cloudwatch.GraphWidgetView.BAR,
}));
Members
Name | Description |
---|---|
TIME_SERIES | Display as a line graph. |
BAR | Display as a bar graph. |
PIE | Display as a pie graph. |
TIME_SERIES
Display as a line graph.
BAR
Display as a bar graph.
PIE
Display as a pie graph.