(this: ItemModel)
| 759 | } |
| 760 | |
| 761 | function isAnimationEnabled(this: ItemModel) { |
| 762 | // `animation` prop can be set on itemModel in pictorial bar chart. |
| 763 | return this.parentModel.isAnimationEnabled() && !!this.getShallow('animation'); |
| 764 | } |
| 765 | |
| 766 | function createBar(data: SeriesData, opt: CreateOpts, symbolMeta: SymbolMeta, isUpdate?: boolean) { |
| 767 | // bar is the main element for each data. |
nothing calls this directly
no test coverage detected
searching dependent graphs…