interface LineSeriesAxisDisplayOptionsProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.QuickSight.CfnAnalysis.LineSeriesAxisDisplayOptionsProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnAnalysis_LineSeriesAxisDisplayOptionsProperty |
Java | software.amazon.awscdk.services.quicksight.CfnAnalysis.LineSeriesAxisDisplayOptionsProperty |
Python | aws_cdk.aws_quicksight.CfnAnalysis.LineSeriesAxisDisplayOptionsProperty |
TypeScript | aws-cdk-lib » aws_quicksight » CfnAnalysis » LineSeriesAxisDisplayOptionsProperty |
The series axis configuration of a line chart.
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';
declare const dataDriven: any;
const lineSeriesAxisDisplayOptionsProperty: quicksight.CfnAnalysis.LineSeriesAxisDisplayOptionsProperty = {
axisOptions: {
axisLineVisibility: 'axisLineVisibility',
axisOffset: 'axisOffset',
dataOptions: {
dateAxisOptions: {
missingDateVisibility: 'missingDateVisibility',
},
numericAxisOptions: {
range: {
dataDriven: dataDriven,
minMax: {
maximum: 123,
minimum: 123,
},
},
scale: {
linear: {
stepCount: 123,
stepSize: 123,
},
logarithmic: {
base: 123,
},
},
},
},
gridLineVisibility: 'gridLineVisibility',
scrollbarOptions: {
visibility: 'visibility',
visibleRange: {
percentRange: {
from: 123,
to: 123,
},
},
},
tickLabelOptions: {
labelOptions: {
customLabel: 'customLabel',
fontConfiguration: {
fontColor: 'fontColor',
fontDecoration: 'fontDecoration',
fontSize: {
relative: 'relative',
},
fontStyle: 'fontStyle',
fontWeight: {
name: 'name',
},
},
visibility: 'visibility',
},
rotationAngle: 123,
},
},
missingDataConfigurations: [{
treatmentOption: 'treatmentOption',
}],
};
Properties
Name | Type | Description |
---|---|---|
axis | IResolvable | Axis | The options that determine the presentation of the line series axis. |
missing | IResolvable | IResolvable | Missing [] | The configuration options that determine how missing data is treated during the rendering of a line chart. |
axisOptions?
Type:
IResolvable
|
Axis
(optional)
The options that determine the presentation of the line series axis.
missingDataConfigurations?
Type:
IResolvable
|
IResolvable
|
Missing
[]
(optional)
The configuration options that determine how missing data is treated during the rendering of a line chart.