(
dataIndex: number,
multipleSeries: boolean,
dataType: string
)
| 203 | } |
| 204 | |
| 205 | formatTooltip( |
| 206 | dataIndex: number, |
| 207 | multipleSeries: boolean, |
| 208 | dataType: string |
| 209 | ) { |
| 210 | const data = this.getData(); |
| 211 | const value = this.getRawValue(dataIndex); |
| 212 | const itemName = data.getName(dataIndex); |
| 213 | |
| 214 | return createTooltipMarkup('section', { |
| 215 | header: this.name, |
| 216 | blocks: [createTooltipMarkup('nameValue', { |
| 217 | name: itemName, |
| 218 | value: value, |
| 219 | noName: !itemName, |
| 220 | noValue: value == null |
| 221 | })] |
| 222 | }); |
| 223 | } |
| 224 | |
| 225 | getData(): SeriesData<this> { |
| 226 | return this._data as SeriesData<this>; |
nothing calls this directly
no test coverage detected
searching dependent graphs…