import { GalenChartDataPoint } from './galen-chart-data-point'; export interface GalenChartDataPointsWithFeatures { /** The dataset */ dataPoints: GalenChartDataPoint[]; /** The last time this data was accessed */ lastAccessed?: Date; /** The min value of the dataset along the X-Axis */ minXValue?: xValueType; /** The max value of the dataset along the X-Axis */ maxXValue?: xValueType; /** The min value of the dataset along the Y-Axis */ minYValue?: number; /** The max value of the dataset along the Y-Axis */ maxYValue?: number; }