hisptz/90-90-90-cascade-graph-widget

View on GitHub
src/app/core/models/chart-configuration.model.ts

Summary

Maintainability
A
0 mins
Test Coverage
export interface ChartConfiguration {
    renderId: string;
    type: string;
    title: string;
    subtitle: string;
    xAxisType: any[];
    yAxisType: string;
    zAxisType: string[];
    showData: boolean;
    hideTitle: boolean;
    hideSubtitle: boolean;
    hideEmptyRows: boolean;
    hideLegend: boolean;
    showLabels: boolean;
    multiAxisTypes: any[];
    cumulativeValues: boolean;
    sortOrder: number;
    percentStackedValues: boolean;
    targetLineLabel: string;
    targetLineValue: number;
    baseLineValue: number;
    baseLineLabel: string;
    legendAlign: string;
    reverseLegend: boolean;
    rangeAxisMaxValue: number;
    rangeAxisMinValue: number;
    axes: any[];
    dataSelections?: any;
    touched?: boolean;
}