Interface: ResponseTimeChartData
Defined in: src/services/chartConfig.ts:47
Response time line chart data structure
Extendsโ
ChartData
<"line"
>
Propertiesโ
datasetsโ
datasets: {
backgroundColor
:string
;borderColor
:string
;data
: (null
|number
)[];fill
:boolean
;label
:string
;tension
:number
; }[]
Defined in: src/services/chartConfig.ts:49
Dataset configuration for response time line chart
backgroundColorโ
backgroundColor:
string
Fill color for area under the line
borderColorโ
borderColor:
string
Line color
dataโ
data: (
null
|number
)[]
Response time data points (null for missing data)
fillโ
fill:
boolean
Whether to fill area under the line
labelโ
label:
string
Chart legend label
tensionโ
tension:
number
Line curve smoothness (0-1)
Overridesโ
ChartData.datasets