interface LineChartLineStyleSettingsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.QuickSight.CfnTemplate.LineChartLineStyleSettingsProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnTemplate_LineChartLineStyleSettingsProperty |
Java | software.amazon.awscdk.services.quicksight.CfnTemplate.LineChartLineStyleSettingsProperty |
Python | aws_cdk.aws_quicksight.CfnTemplate.LineChartLineStyleSettingsProperty |
TypeScript | aws-cdk-lib » aws_quicksight » CfnTemplate » LineChartLineStyleSettingsProperty |
Line styles options for a line series in LineChartVisual .
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_quicksight as quicksight } from 'aws-cdk-lib';
const lineChartLineStyleSettingsProperty: quicksight.CfnTemplate.LineChartLineStyleSettingsProperty = {
lineInterpolation: 'lineInterpolation',
lineStyle: 'lineStyle',
lineVisibility: 'lineVisibility',
lineWidth: 'lineWidth',
};
Properties
| Name | Type | Description |
|---|---|---|
| line | string | Interpolation style for line series. |
| line | string | Line style for line series. |
| line | string | Configuration option that determines whether to show the line for the series. |
| line | string | Width that determines the line thickness. |
lineInterpolation?
Type:
string
(optional)
Interpolation style for line series.
LINEAR: Show as default, linear style.SMOOTH: Show as a smooth curve.STEPPED: Show steps in line.
lineStyle?
Type:
string
(optional)
Line style for line series.
SOLID: Show as a solid line.DOTTED: Show as a dotted line.DASHED: Show as a dashed line.
lineVisibility?
Type:
string
(optional)
Configuration option that determines whether to show the line for the series.
lineWidth?
Type:
string
(optional)
Width that determines the line thickness.

.NET
Go
Java
Python
TypeScript