Ensured tooltips are not intersect for bar charts

This commit is contained in:
Alejandro Celaya
2018-10-30 20:41:36 +01:00
parent 0c1c471714
commit 822afa6db7
2 changed files with 5 additions and 2 deletions

View File

@@ -76,6 +76,9 @@ const renderGraph = (title, isBarChart, stats, matchMedia) => {
},
],
} : null,
tooltips: {
intersect: !isBarChart,
},
};
return <Component data={generateGraphData(title, isBarChart, labels, data)} options={options} height={null} />;