(params: TooltipParams)
| 145 | * For candlestick series, returns O/H/L/C with arrow and percentage change. |
| 146 | */ |
| 147 | export function formatTooltipItem(params: TooltipParams): string { |
| 148 | if (isCandlestickValue(params.value)) { |
| 149 | return formatCandlestickTooltip(params); |
| 150 | } |
| 151 | return formatRowHtml(params, formatNumber(params.value[1])); |
| 152 | } |
| 153 | |
| 154 | /** |
| 155 | * Default tooltip formatter for axis mode. |
no test coverage detected