1
0
mirror of https://github.com/elisspace/FxLifeSheet.git synced 2026-08-29 15:44:00 +00:00

Disable label for ranges in pie charts

This commit is contained in:
Felix Krause
2022-03-15 17:48:42 +01:00
parent 6bd7ca662e
commit ac260ea453

View File

@@ -191,7 +191,7 @@ function renderPieHistoryChart(yearsData, key, groupByMonth, nodeId) {
name: i,
type: 'bar',
textposition: 'inside',
text: i,
text: (numberOfValues > 6) ? i : null, // those graphs look nicer without the number
marker: (colorToUse ? {
color: colorToUse,
} : {})