(
itemLayout: BoxplotItemLayout,
data: SeriesData,
dataIndex: number,
constDim: number,
isInit?: boolean
)
| 175 | } |
| 176 | |
| 177 | function createNormalBox( |
| 178 | itemLayout: BoxplotItemLayout, |
| 179 | data: SeriesData, |
| 180 | dataIndex: number, |
| 181 | constDim: number, |
| 182 | isInit?: boolean |
| 183 | ) { |
| 184 | const ends = itemLayout.ends; |
| 185 | |
| 186 | const el = new BoxPath({ |
| 187 | shape: { |
| 188 | points: isInit |
| 189 | ? transInit(ends, constDim, itemLayout) |
| 190 | : ends |
| 191 | } |
| 192 | }); |
| 193 | |
| 194 | updateNormalBoxData(itemLayout, el, data, dataIndex, isInit); |
| 195 | |
| 196 | return el; |
| 197 | } |
| 198 | |
| 199 | function updateNormalBoxData( |
| 200 | itemLayout: BoxplotItemLayout, |
no test coverage detected
searching dependent graphs…