export interface GraphDataPoint {
    readonly propertyName: string;
    readonly legendKey: string;
    readonly plotType: string;
    readonly type: string;
    readonly bubbleRadiusName: string;
    readonly bubbleRadiusType: string;
    readonly seriesColor: string;
    readonly xAxisName: string;
    readonly xAxisType: string;
}
