heatmap tooltip: change "values" label to "count"

This commit is contained in:
Alexander Zobnin 2017-03-29 12:41:34 +03:00
parent 7770c38e30
commit 7c5b9f8c5b

View File

@ -93,7 +93,7 @@ export class HeatmapTooltip {
valuesNumber = yData.values.length; valuesNumber = yData.values.length;
tooltipHtml += `<div> tooltipHtml += `<div>
bucket: <b>${boundBottom} - ${boundTop}</b> <br> bucket: <b>${boundBottom} - ${boundTop}</b> <br>
values: <b>${valuesNumber}</b> <br> count: <b>${valuesNumber}</b> <br>
</div>`; </div>`;
if (this.panel.tooltip.seriesStat && yData.seriesStat) { if (this.panel.tooltip.seriesStat && yData.seriesStat) {