diff --git a/web-console/src/components/segment-timeline/bar-group.tsx b/web-console/src/components/segment-timeline/bar-group.tsx index 11b02523c89..442df4ba73c 100644 --- a/web-console/src/components/segment-timeline/bar-group.tsx +++ b/web-console/src/components/segment-timeline/bar-group.tsx @@ -56,6 +56,7 @@ export class BarGroup extends React.Component { datasource: entry.datasource, xValue: entry.x, yValue: entry.y, + dailySize: entry.dailySize, }; return (
Datasource: {hoverOn.datasource}
Time: {hoverOn.xValue}
+
+ {`${ + activeDataType === 'countData' ? 'Daily total count:' : 'Daily total size:' + } ${formatTick(hoverOn.dailySize!)}`} +
{`${activeDataType === 'countData' ? 'Count:' : 'Size:'} ${formatTick( hoverOn.yValue!,