Commit 0e173918 by David Kaltschmidt

Explore: show series title in tooltip of legend item

parent 377bc440
......@@ -5,7 +5,9 @@ const LegendItem = ({ series }) => (
<div className="graph-legend-icon">
<i className="fa fa-minus pointer" style={{ color: series.color }} />
</div>
<a className="graph-legend-alias pointer">{series.alias}</a>
<a className="graph-legend-alias pointer" title={series.alias}>
{series.alias}
</a>
</div>
);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment