interface LineChartLineStyleSettingsProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.QuickSight.CfnAnalysis.LineChartLineStyleSettingsProperty |
Java | software.amazon.awscdk.services.quicksight.CfnAnalysis.LineChartLineStyleSettingsProperty |
Python | aws_cdk.aws_quicksight.CfnAnalysis.LineChartLineStyleSettingsProperty |
TypeScript | @aws-cdk/aws-quicksight » CfnAnalysis » 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 * as quicksight from '@aws-cdk/aws-quicksight';
const lineChartLineStyleSettingsProperty: quicksight.CfnAnalysis.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.