igniteui-angular-charts
Version:
Ignite UI Angular charting components for building rich data visualizations for modern web apps.
504 lines (498 loc) • 26.7 kB
TypeScript
import { HorizontalAlignment } from "igniteui-angular-core";
import { VerticalAlignment } from "igniteui-angular-core";
import { Visibility } from "igniteui-angular-core";
import { ValueAxisLabelLocation } from "./ValueAxisLabelLocation";
import { AngleAxisLabelLocation } from "./AngleAxisLabelLocation";
import { IgxDomainChartComponent } from "./igx-domain-chart-component";
import { RadialBaseChart } from "./RadialBaseChart";
import * as i0 from "@angular/core";
/**
* Represents a base class for domain charts with X/Y axes
*/
export declare abstract class IgxRadialBaseChartComponent extends IgxDomainChartComponent {
/**
* @hidden
*/
get i(): RadialBaseChart;
constructor();
/**
* Gets or sets function which takes an context object and returns a formatted label for the X-axis.
*/
get angleAxisFormatLabel(): (item: any) => string;
set angleAxisFormatLabel(v: (item: any) => string);
/**
* Gets or sets function which takes a context object and returns a formatted label for the Y-axis.
*/
get valueAxisFormatLabel(): (item: any) => string;
set valueAxisFormatLabel(v: (item: any) => string);
/**
* Gets or sets the left margin of labels on the X-axis
*/
get angleAxisLabelLeftMargin(): number;
set angleAxisLabelLeftMargin(v: number);
static ngAcceptInputType_angleAxisLabelLeftMargin: number | string;
/**
* Gets or sets the top margin of labels on the X-axis
*/
get angleAxisLabelTopMargin(): number;
set angleAxisLabelTopMargin(v: number);
static ngAcceptInputType_angleAxisLabelTopMargin: number | string;
/**
* Gets or sets the right margin of labels on the X-axis
*/
get angleAxisLabelRightMargin(): number;
set angleAxisLabelRightMargin(v: number);
static ngAcceptInputType_angleAxisLabelRightMargin: number | string;
/**
* Gets or sets the bottom margin of labels on the X-axis
*/
get angleAxisLabelBottomMargin(): number;
set angleAxisLabelBottomMargin(v: number);
static ngAcceptInputType_angleAxisLabelBottomMargin: number | string;
/**
* Gets or sets the left margin of labels on the Y-axis
*/
get valueAxisLabelLeftMargin(): number;
set valueAxisLabelLeftMargin(v: number);
static ngAcceptInputType_valueAxisLabelLeftMargin: number | string;
/**
* Gets or sets the top margin of labels on the Y-axis
*/
get valueAxisLabelTopMargin(): number;
set valueAxisLabelTopMargin(v: number);
static ngAcceptInputType_valueAxisLabelTopMargin: number | string;
/**
* Gets or sets the right margin of labels on the Y-axis
*/
get valueAxisLabelRightMargin(): number;
set valueAxisLabelRightMargin(v: number);
static ngAcceptInputType_valueAxisLabelRightMargin: number | string;
/**
* Gets or sets the bottom margin of labels on the Y-axis
*/
get valueAxisLabelBottomMargin(): number;
set valueAxisLabelBottomMargin(v: number);
static ngAcceptInputType_valueAxisLabelBottomMargin: number | string;
/**
* Gets or sets color of labels on the X-axis
*/
get angleAxisLabelTextColor(): string;
set angleAxisLabelTextColor(v: string);
/**
* Gets or sets color of labels on the Y-axis
*/
get valueAxisLabelTextColor(): string;
set valueAxisLabelTextColor(v: string);
/**
* Gets the actual color of labels on the X-axis
*/
get actualAngleAxisLabelTextColor(): string;
set actualAngleAxisLabelTextColor(v: string);
/**
* Gets the actual color of labels on the Y-axis
*/
get actualValueAxisLabelTextColor(): string;
set actualValueAxisLabelTextColor(v: string);
/**
* Gets or sets the margin around a title on the X-axis
*/
get angleAxisTitleMargin(): number;
set angleAxisTitleMargin(v: number);
static ngAcceptInputType_angleAxisTitleMargin: number | string;
/**
* Gets or sets the margin around a title on the Y-axis
*/
get valueAxisTitleMargin(): number;
set valueAxisTitleMargin(v: number);
static ngAcceptInputType_valueAxisTitleMargin: number | string;
/**
* Gets or sets the left margin of a title on the X-axis
*/
get angleAxisTitleLeftMargin(): number;
set angleAxisTitleLeftMargin(v: number);
static ngAcceptInputType_angleAxisTitleLeftMargin: number | string;
/**
* Gets or sets the left margin of a title on the Y-axis
*/
get valueAxisTitleLeftMargin(): number;
set valueAxisTitleLeftMargin(v: number);
static ngAcceptInputType_valueAxisTitleLeftMargin: number | string;
/**
* Gets or sets the top margin of a title on the X-axis
*/
get angleAxisTitleTopMargin(): number;
set angleAxisTitleTopMargin(v: number);
static ngAcceptInputType_angleAxisTitleTopMargin: number | string;
/**
* Gets or sets the top margin of a title on the Y-axis
*/
get valueAxisTitleTopMargin(): number;
set valueAxisTitleTopMargin(v: number);
static ngAcceptInputType_valueAxisTitleTopMargin: number | string;
/**
* Gets or sets the right margin of a title on the X-axis
*/
get angleAxisTitleRightMargin(): number;
set angleAxisTitleRightMargin(v: number);
static ngAcceptInputType_angleAxisTitleRightMargin: number | string;
/**
* Gets or sets the right margin of a title on the Y-axis
*/
get valueAxisTitleRightMargin(): number;
set valueAxisTitleRightMargin(v: number);
static ngAcceptInputType_valueAxisTitleRightMargin: number | string;
/**
* Gets or sets the bottom margin of a title on the X-axis
*/
get angleAxisTitleBottomMargin(): number;
set angleAxisTitleBottomMargin(v: number);
static ngAcceptInputType_angleAxisTitleBottomMargin: number | string;
/**
* Gets or sets the bottom margin of a title on the Y-axis
*/
get valueAxisTitleBottomMargin(): number;
set valueAxisTitleBottomMargin(v: number);
static ngAcceptInputType_valueAxisTitleBottomMargin: number | string;
/**
* Gets or sets color of title on the X-axis
*/
get angleAxisTitleTextColor(): string;
set angleAxisTitleTextColor(v: string);
/**
* Gets or sets color of title on the Y-axis
*/
get valueAxisTitleTextColor(): string;
set valueAxisTitleTextColor(v: string);
/**
* Gets or sets CSS font property for labels on X-axis
*/
get angleAxisLabelTextStyle(): string;
set angleAxisLabelTextStyle(v: string);
/**
* Gets or sets CSS font property for labels on Y-axis
*/
get valueAxisLabelTextStyle(): string;
set valueAxisLabelTextStyle(v: string);
/**
* Gets or sets CSS font property for title on X-axis
*/
get angleAxisTitleTextStyle(): string;
set angleAxisTitleTextStyle(v: string);
/**
* Gets or sets CSS font property for title on Y-axis
*/
get valueAxisTitleTextStyle(): string;
set valueAxisTitleTextStyle(v: string);
/**
* Gets or sets the format for labels along the X-axis.
*/
get angleAxisLabel(): any;
set angleAxisLabel(v: any);
/**
* Gets or sets the property or string from which the labels are derived.
*/
get valueAxisLabel(): any;
set valueAxisLabel(v: any);
/**
* Gets or sets the color to apply to major gridlines along the X-axis.
*/
get angleAxisMajorStroke(): string;
set angleAxisMajorStroke(v: string);
/**
* Gets or sets the color to apply to major gridlines along the Y-axis.
*/
get valueAxisMajorStroke(): string;
set valueAxisMajorStroke(v: string);
/**
* Gets or sets the thickness to apply to major gridlines along the X-axis.
*/
get angleAxisMajorStrokeThickness(): number;
set angleAxisMajorStrokeThickness(v: number);
static ngAcceptInputType_angleAxisMajorStrokeThickness: number | string;
/**
* Gets or sets the thickness to apply to major gridlines along the Y-axis.
*/
get valueAxisMajorStrokeThickness(): number;
set valueAxisMajorStrokeThickness(v: number);
static ngAcceptInputType_valueAxisMajorStrokeThickness: number | string;
/**
* Gets or sets the thickness to apply to minor gridlines along the X-axis.
*/
get angleAxisMinorStrokeThickness(): number;
set angleAxisMinorStrokeThickness(v: number);
static ngAcceptInputType_angleAxisMinorStrokeThickness: number | string;
/**
* Gets or sets the thickness to apply to minor gridlines along the Y-axis.
*/
get valueAxisMinorStrokeThickness(): number;
set valueAxisMinorStrokeThickness(v: number);
static ngAcceptInputType_valueAxisMinorStrokeThickness: number | string;
/**
* Gets or sets the color to apply to stripes along the X-axis.
*/
get angleAxisStrip(): string;
set angleAxisStrip(v: string);
/**
* Gets or sets the color to apply to stripes along the Y-axis.
*/
get valueAxisStrip(): string;
set valueAxisStrip(v: string);
/**
* Gets or sets the color to apply to the X-axis line.
*/
get angleAxisStroke(): string;
set angleAxisStroke(v: string);
/**
* Gets or sets the color to apply to the Y-axis line.
*/
get valueAxisStroke(): string;
set valueAxisStroke(v: string);
/**
* Gets or sets the thickness to apply to the X-axis line.
*/
get angleAxisStrokeThickness(): number;
set angleAxisStrokeThickness(v: number);
static ngAcceptInputType_angleAxisStrokeThickness: number | string;
/**
* Gets or sets the thickness to apply to the Y-axis line.
*/
get valueAxisStrokeThickness(): number;
set valueAxisStrokeThickness(v: number);
static ngAcceptInputType_valueAxisStrokeThickness: number | string;
/**
* Gets or sets the length of tickmarks along the X-axis.
*/
get angleAxisTickLength(): number;
set angleAxisTickLength(v: number);
static ngAcceptInputType_angleAxisTickLength: number | string;
/**
* Gets or sets the length of tickmarks along the Y-axis.
*/
get valueAxisTickLength(): number;
set valueAxisTickLength(v: number);
static ngAcceptInputType_valueAxisTickLength: number | string;
/**
* Gets or sets the color to apply to tickmarks along the X-axis.
*/
get angleAxisTickStroke(): string;
set angleAxisTickStroke(v: string);
/**
* Gets or sets the color to apply to tickmarks along the Y-axis.
*/
get valueAxisTickStroke(): string;
set valueAxisTickStroke(v: string);
/**
* Gets or sets the thickness to apply to tickmarks along the X-axis.
*/
get angleAxisTickStrokeThickness(): number;
set angleAxisTickStrokeThickness(v: number);
static ngAcceptInputType_angleAxisTickStrokeThickness: number | string;
/**
* Gets or sets the thickness to apply to tickmarks along the Y-axis.
*/
get valueAxisTickStrokeThickness(): number;
set valueAxisTickStrokeThickness(v: number);
static ngAcceptInputType_valueAxisTickStrokeThickness: number | string;
/**
* Gets or sets the Text to display below the X-axis.
*/
get angleAxisTitle(): string;
set angleAxisTitle(v: string);
/**
* Gets or sets the Text to display to the left of the Y-axis.
*/
get valueAxisTitle(): string;
set valueAxisTitle(v: string);
/**
* Gets or sets the color to apply to minor gridlines along the X-axis.
*/
get angleAxisMinorStroke(): string;
set angleAxisMinorStroke(v: string);
/**
* Gets or sets the color to apply to minor gridlines along the Y-axis.
*/
get valueAxisMinorStroke(): string;
set valueAxisMinorStroke(v: string);
/**
* Gets or sets the angle of rotation for labels along the X-axis.
*/
get angleAxisLabelAngle(): number;
set angleAxisLabelAngle(v: number);
static ngAcceptInputType_angleAxisLabelAngle: number | string;
/**
* Gets or sets the angle of rotation for labels along the Y-axis.
*/
get valueAxisLabelAngle(): number;
set valueAxisLabelAngle(v: number);
static ngAcceptInputType_valueAxisLabelAngle: number | string;
/**
* Gets or sets the distance between the X-axis and the bottom of the chart.
*/
get angleAxisExtent(): number;
set angleAxisExtent(v: number);
static ngAcceptInputType_angleAxisExtent: number | string;
/**
* Gets or sets the maximum distance between the X-axis and the bottom of the chart.
*/
get angleAxisMaximumExtent(): number;
set angleAxisMaximumExtent(v: number);
static ngAcceptInputType_angleAxisMaximumExtent: number | string;
/**
* Gets or sets the maximum width between the X-axis and the bottom of the chart, as a percentage of total chart width.
*/
get angleAxisMaximumExtentPercentage(): number;
set angleAxisMaximumExtentPercentage(v: number);
static ngAcceptInputType_angleAxisMaximumExtentPercentage: number | string;
/**
* Gets or sets the distance between the Y-axis and the left edge of the chart.
*/
get valueAxisExtent(): number;
set valueAxisExtent(v: number);
static ngAcceptInputType_valueAxisExtent: number | string;
/**
* Gets or sets the distance between the Y-axis and the left edge of the chart.
*/
get valueAxisMaximumExtent(): number;
set valueAxisMaximumExtent(v: number);
static ngAcceptInputType_valueAxisMaximumExtent: number | string;
/**
* Gets or sets the distance between the Y-axis and the left edge of the chart.
*/
get valueAxisMaximumExtentPercentage(): number;
set valueAxisMaximumExtentPercentage(v: number);
static ngAcceptInputType_valueAxisMaximumExtentPercentage: number | string;
/**
* Gets or sets the angle of rotation for the X-axis title.
*/
get angleAxisTitleAngle(): number;
set angleAxisTitleAngle(v: number);
static ngAcceptInputType_angleAxisTitleAngle: number | string;
/**
* Gets or sets the angle of rotation for the Y-axis title.
*/
get valueAxisTitleAngle(): number;
set valueAxisTitleAngle(v: number);
static ngAcceptInputType_valueAxisTitleAngle: number | string;
/**
* Gets or sets whether to invert the direction of the X-axis by placing the first data items on the right side of the chart.
*/
get angleAxisInverted(): boolean;
set angleAxisInverted(v: boolean);
static ngAcceptInputType_angleAxisInverted: boolean | string;
/**
* Gets or sets whether to invert the direction of the Y-axis by placing the minimum numeric value at the top of the chart.
*/
get valueAxisInverted(): boolean;
set valueAxisInverted(v: boolean);
static ngAcceptInputType_valueAxisInverted: boolean | string;
/**
* Gets or sets Horizontal alignment of the X-axis title.
*/
get angleAxisTitleAlignment(): HorizontalAlignment;
set angleAxisTitleAlignment(v: HorizontalAlignment);
static ngAcceptInputType_angleAxisTitleAlignment: HorizontalAlignment | string;
/**
* Gets or sets Vertical alignment of the Y-axis title.
*/
get valueAxisTitleAlignment(): VerticalAlignment;
set valueAxisTitleAlignment(v: VerticalAlignment);
static ngAcceptInputType_valueAxisTitleAlignment: VerticalAlignment | string;
/**
* Gets or sets Horizontal alignment of X-axis labels.
*/
get angleAxisLabelHorizontalAlignment(): HorizontalAlignment;
set angleAxisLabelHorizontalAlignment(v: HorizontalAlignment);
static ngAcceptInputType_angleAxisLabelHorizontalAlignment: HorizontalAlignment | string;
/**
* Gets or sets Horizontal alignment of Y-axis labels.
*/
get valueAxisLabelHorizontalAlignment(): HorizontalAlignment;
set valueAxisLabelHorizontalAlignment(v: HorizontalAlignment);
static ngAcceptInputType_valueAxisLabelHorizontalAlignment: HorizontalAlignment | string;
/**
* Gets or sets Vertical alignment of X-axis labels.
*/
get angleAxisLabelVerticalAlignment(): VerticalAlignment;
set angleAxisLabelVerticalAlignment(v: VerticalAlignment);
static ngAcceptInputType_angleAxisLabelVerticalAlignment: VerticalAlignment | string;
/**
* Gets or sets Vertical alignment of Y-axis labels.
*/
get valueAxisLabelVerticalAlignment(): VerticalAlignment;
set valueAxisLabelVerticalAlignment(v: VerticalAlignment);
static ngAcceptInputType_valueAxisLabelVerticalAlignment: VerticalAlignment | string;
/**
* Gets or sets Visibility of X-axis labels.
*/
get angleAxisLabelVisibility(): Visibility;
set angleAxisLabelVisibility(v: Visibility);
static ngAcceptInputType_angleAxisLabelVisibility: Visibility | string;
/**
* Gets or sets Visibility of Y-axis labels.
*/
get valueAxisLabelVisibility(): Visibility;
set valueAxisLabelVisibility(v: Visibility);
static ngAcceptInputType_valueAxisLabelVisibility: Visibility | string;
/**
* Gets or sets location of Y-axis labels, relative to the plot area.
*/
get valueAxisLabelLocation(): ValueAxisLabelLocation;
set valueAxisLabelLocation(v: ValueAxisLabelLocation);
static ngAcceptInputType_valueAxisLabelLocation: ValueAxisLabelLocation | string;
/**
* Gets or sets location of X-axis labels, relative to the plot area.
*/
get angleAxisLabelLocation(): AngleAxisLabelLocation;
set angleAxisLabelLocation(v: AngleAxisLabelLocation);
static ngAcceptInputType_angleAxisLabelLocation: AngleAxisLabelLocation | string;
/**
* Gets or sets the format string for the X axis label.
*/
get angleAxisLabelFormat(): string;
set angleAxisLabelFormat(v: string);
/**
* Gets or sets the format specifiers to use with the AngleAxisLabelFormat string.
*/
get angleAxisLabelFormatSpecifiers(): any[];
set angleAxisLabelFormatSpecifiers(v: any[]);
static ngAcceptInputType_angleAxisLabelFormatSpecifiers: any[] | string;
/**
* Gets or sets the format string for the Y axis label.
*/
get valueAxisLabelFormat(): string;
set valueAxisLabelFormat(v: string);
/**
* Gets or sets the format specifiers to use with the ValueAxisLabelFormat string.
*/
get valueAxisLabelFormatSpecifiers(): any[];
set valueAxisLabelFormatSpecifiers(v: any[]);
static ngAcceptInputType_valueAxisLabelFormatSpecifiers: any[] | string;
findByName(name: string): any;
/**
* Called by the UI framework to provide a UI container for rendering this control.
* @param container * The UI container element.
*/
provideContainer(container: any): void;
/**
* Converts the given visual location to a data value.
* @param unscaledValue * The x-coordinate of the location to scale.
*/
getScaledAngle(unscaledValue: number): number;
/**
* Converts the given data value to a visual location.
* @param scaledValue * The data value to un-scale.
*/
getUnscaledAngle(scaledValue: number): number;
/**
* Converts the given visual location to a data value.
* @param unscaledValue * The y-coordinate of the location to scale.
*/
getScaledValue(unscaledValue: number): number;
/**
* Converts the given data value to a visual location.
* @param scaledValue * The data value to un-scale.
*/
getUnscaledValue(scaledValue: number): number;
static ɵfac: i0.ɵɵFactoryDeclaration<IgxRadialBaseChartComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<IgxRadialBaseChartComponent, "ng-component", never, { "angleAxisFormatLabel": { "alias": "angleAxisFormatLabel"; "required": false; }; "valueAxisFormatLabel": { "alias": "valueAxisFormatLabel"; "required": false; }; "angleAxisLabelLeftMargin": { "alias": "angleAxisLabelLeftMargin"; "required": false; }; "angleAxisLabelTopMargin": { "alias": "angleAxisLabelTopMargin"; "required": false; }; "angleAxisLabelRightMargin": { "alias": "angleAxisLabelRightMargin"; "required": false; }; "angleAxisLabelBottomMargin": { "alias": "angleAxisLabelBottomMargin"; "required": false; }; "valueAxisLabelLeftMargin": { "alias": "valueAxisLabelLeftMargin"; "required": false; }; "valueAxisLabelTopMargin": { "alias": "valueAxisLabelTopMargin"; "required": false; }; "valueAxisLabelRightMargin": { "alias": "valueAxisLabelRightMargin"; "required": false; }; "valueAxisLabelBottomMargin": { "alias": "valueAxisLabelBottomMargin"; "required": false; }; "angleAxisLabelTextColor": { "alias": "angleAxisLabelTextColor"; "required": false; }; "valueAxisLabelTextColor": { "alias": "valueAxisLabelTextColor"; "required": false; }; "actualAngleAxisLabelTextColor": { "alias": "actualAngleAxisLabelTextColor"; "required": false; }; "actualValueAxisLabelTextColor": { "alias": "actualValueAxisLabelTextColor"; "required": false; }; "angleAxisTitleMargin": { "alias": "angleAxisTitleMargin"; "required": false; }; "valueAxisTitleMargin": { "alias": "valueAxisTitleMargin"; "required": false; }; "angleAxisTitleLeftMargin": { "alias": "angleAxisTitleLeftMargin"; "required": false; }; "valueAxisTitleLeftMargin": { "alias": "valueAxisTitleLeftMargin"; "required": false; }; "angleAxisTitleTopMargin": { "alias": "angleAxisTitleTopMargin"; "required": false; }; "valueAxisTitleTopMargin": { "alias": "valueAxisTitleTopMargin"; "required": false; }; "angleAxisTitleRightMargin": { "alias": "angleAxisTitleRightMargin"; "required": false; }; "valueAxisTitleRightMargin": { "alias": "valueAxisTitleRightMargin"; "required": false; }; "angleAxisTitleBottomMargin": { "alias": "angleAxisTitleBottomMargin"; "required": false; }; "valueAxisTitleBottomMargin": { "alias": "valueAxisTitleBottomMargin"; "required": false; }; "angleAxisTitleTextColor": { "alias": "angleAxisTitleTextColor"; "required": false; }; "valueAxisTitleTextColor": { "alias": "valueAxisTitleTextColor"; "required": false; }; "angleAxisLabelTextStyle": { "alias": "angleAxisLabelTextStyle"; "required": false; }; "valueAxisLabelTextStyle": { "alias": "valueAxisLabelTextStyle"; "required": false; }; "angleAxisTitleTextStyle": { "alias": "angleAxisTitleTextStyle"; "required": false; }; "valueAxisTitleTextStyle": { "alias": "valueAxisTitleTextStyle"; "required": false; }; "angleAxisLabel": { "alias": "angleAxisLabel"; "required": false; }; "valueAxisLabel": { "alias": "valueAxisLabel"; "required": false; }; "angleAxisMajorStroke": { "alias": "angleAxisMajorStroke"; "required": false; }; "valueAxisMajorStroke": { "alias": "valueAxisMajorStroke"; "required": false; }; "angleAxisMajorStrokeThickness": { "alias": "angleAxisMajorStrokeThickness"; "required": false; }; "valueAxisMajorStrokeThickness": { "alias": "valueAxisMajorStrokeThickness"; "required": false; }; "angleAxisMinorStrokeThickness": { "alias": "angleAxisMinorStrokeThickness"; "required": false; }; "valueAxisMinorStrokeThickness": { "alias": "valueAxisMinorStrokeThickness"; "required": false; }; "angleAxisStrip": { "alias": "angleAxisStrip"; "required": false; }; "valueAxisStrip": { "alias": "valueAxisStrip"; "required": false; }; "angleAxisStroke": { "alias": "angleAxisStroke"; "required": false; }; "valueAxisStroke": { "alias": "valueAxisStroke"; "required": false; }; "angleAxisStrokeThickness": { "alias": "angleAxisStrokeThickness"; "required": false; }; "valueAxisStrokeThickness": { "alias": "valueAxisStrokeThickness"; "required": false; }; "angleAxisTickLength": { "alias": "angleAxisTickLength"; "required": false; }; "valueAxisTickLength": { "alias": "valueAxisTickLength"; "required": false; }; "angleAxisTickStroke": { "alias": "angleAxisTickStroke"; "required": false; }; "valueAxisTickStroke": { "alias": "valueAxisTickStroke"; "required": false; }; "angleAxisTickStrokeThickness": { "alias": "angleAxisTickStrokeThickness"; "required": false; }; "valueAxisTickStrokeThickness": { "alias": "valueAxisTickStrokeThickness"; "required": false; }; "angleAxisTitle": { "alias": "angleAxisTitle"; "required": false; }; "valueAxisTitle": { "alias": "valueAxisTitle"; "required": false; }; "angleAxisMinorStroke": { "alias": "angleAxisMinorStroke"; "required": false; }; "valueAxisMinorStroke": { "alias": "valueAxisMinorStroke"; "required": false; }; "angleAxisLabelAngle": { "alias": "angleAxisLabelAngle"; "required": false; }; "valueAxisLabelAngle": { "alias": "valueAxisLabelAngle"; "required": false; }; "angleAxisExtent": { "alias": "angleAxisExtent"; "required": false; }; "angleAxisMaximumExtent": { "alias": "angleAxisMaximumExtent"; "required": false; }; "angleAxisMaximumExtentPercentage": { "alias": "angleAxisMaximumExtentPercentage"; "required": false; }; "valueAxisExtent": { "alias": "valueAxisExtent"; "required": false; }; "valueAxisMaximumExtent": { "alias": "valueAxisMaximumExtent"; "required": false; }; "valueAxisMaximumExtentPercentage": { "alias": "valueAxisMaximumExtentPercentage"; "required": false; }; "angleAxisTitleAngle": { "alias": "angleAxisTitleAngle"; "required": false; }; "valueAxisTitleAngle": { "alias": "valueAxisTitleAngle"; "required": false; }; "angleAxisInverted": { "alias": "angleAxisInverted"; "required": false; }; "valueAxisInverted": { "alias": "valueAxisInverted"; "required": false; }; "angleAxisTitleAlignment": { "alias": "angleAxisTitleAlignment"; "required": false; }; "valueAxisTitleAlignment": { "alias": "valueAxisTitleAlignment"; "required": false; }; "angleAxisLabelHorizontalAlignment": { "alias": "angleAxisLabelHorizontalAlignment"; "required": false; }; "valueAxisLabelHorizontalAlignment": { "alias": "valueAxisLabelHorizontalAlignment"; "required": false; }; "angleAxisLabelVerticalAlignment": { "alias": "angleAxisLabelVerticalAlignment"; "required": false; }; "valueAxisLabelVerticalAlignment": { "alias": "valueAxisLabelVerticalAlignment"; "required": false; }; "angleAxisLabelVisibility": { "alias": "angleAxisLabelVisibility"; "required": false; }; "valueAxisLabelVisibility": { "alias": "valueAxisLabelVisibility"; "required": false; }; "valueAxisLabelLocation": { "alias": "valueAxisLabelLocation"; "required": false; }; "angleAxisLabelLocation": { "alias": "angleAxisLabelLocation"; "required": false; }; "angleAxisLabelFormat": { "alias": "angleAxisLabelFormat"; "required": false; }; "angleAxisLabelFormatSpecifiers": { "alias": "angleAxisLabelFormatSpecifiers"; "required": false; }; "valueAxisLabelFormat": { "alias": "valueAxisLabelFormat"; "required": false; }; "valueAxisLabelFormatSpecifiers": { "alias": "valueAxisLabelFormatSpecifiers"; "required": false; }; }, {}, never, never, true, never>;
}