This commit is contained in:
Andrey Meshkov 2018-10-14 23:50:13 +03:00
parent c9736ec0fa
commit 1059669b57
1 changed files with 3 additions and 1 deletions

View File

@ -36,7 +36,9 @@ const Line = props => (
{slice.data.map(d => (
<div key={d.serie.id} className="line__tooltip">
<span className="line__tooltip-text">
{d.data.y}
<strong>{d.data.y}</strong>
<br/>
<small>{d.data.x}</small>
</span>
</div>
))}