Skip to content
Snippets Groups Projects
Commit 8b7054c7 authored by Benoît Harrault's avatar Benoît Harrault
Browse files

Remove tooltips on charts

parent a03e837f
No related branches found
No related tags found
1 merge request!20Resolve "Remove tooltips on charts"
Pipeline #4515 passed
This commit is part of merge request !20. Comments created here will be created in the context of that merge request.
org.gradle.jvmargs=-Xmx1536M org.gradle.jvmargs=-Xmx1536M
android.useAndroidX=true android.useAndroidX=true
android.enableJetifier=true android.enableJetifier=true
app.versionName=0.0.18 app.versionName=0.0.19
app.versionCode=18 app.versionCode=19
Remove tooltips on charts.
Suppression des infobulles sur les graphiques.
...@@ -30,7 +30,7 @@ class CustomBarChart extends StatelessWidget { ...@@ -30,7 +30,7 @@ class CustomBarChart extends StatelessWidget {
borderData: getBorderData(), borderData: getBorderData(),
gridData: getGridData(), gridData: getGridData(),
titlesData: getTitlesData(), titlesData: getTitlesData(),
barTouchData: getBarTouchData(), barTouchData: BarTouchData(enabled: false),
maxY: getNextRoundNumber(getMaxCountsValue(), this.verticalTicksInterval), maxY: getNextRoundNumber(getMaxCountsValue(), this.verticalTicksInterval),
), ),
); );
...@@ -199,30 +199,4 @@ class CustomBarChart extends StatelessWidget { ...@@ -199,30 +199,4 @@ class CustomBarChart extends StatelessWidget {
), ),
); );
} }
BarTouchData getBarTouchData() {
return BarTouchData(
enabled: true,
touchTooltipData: BarTouchTooltipData(
tooltipBgColor: Colors.transparent,
tooltipPadding: EdgeInsets.zero,
tooltipMargin: 2,
getTooltipItem: (
BarChartGroupData group,
int groupIndex,
BarChartRodData rod,
int rodIndex,
) {
return BarTooltipItem(
rod.toY.round().toString(),
const TextStyle(
color: AppColors.mainTextColor2,
fontWeight: FontWeight.bold,
fontSize: 10,
),
);
},
),
);
}
} }
...@@ -94,28 +94,4 @@ class CustomLineChart extends StatelessWidget { ...@@ -94,28 +94,4 @@ class CustomLineChart extends StatelessWidget {
Widget getHorizontalTitlesWidget(double value, TitleMeta meta) { Widget getHorizontalTitlesWidget(double value, TitleMeta meta) {
return Text(''); return Text('');
} }
LineTouchData getLineTouchDataEclecticism() {
return LineTouchData(
handleBuiltInTouches: true,
touchTooltipData: LineTouchTooltipData(
tooltipBgColor: Colors.transparent,
tooltipPadding: EdgeInsets.all(8),
tooltipMargin: 2,
getTooltipItems: (List<LineBarSpot> touchedSpots) {
return touchedSpots.map((LineBarSpot touchedSpot) {
final textStyle = TextStyle(
color: AppColors.mainTextColor2,
fontWeight: FontWeight.bold,
fontSize: 10,
);
return LineTooltipItem(
touchedSpot.y.toString(),
textStyle,
);
}).toList();
},
),
);
}
} }
...@@ -23,7 +23,7 @@ class ChartTimelineEclecticism extends CustomLineChart { ...@@ -23,7 +23,7 @@ class ChartTimelineEclecticism extends CustomLineChart {
borderData: getBorderData(), borderData: getBorderData(),
gridData: getGridData(), gridData: getGridData(),
titlesData: getTitlesData(), titlesData: getTitlesData(),
lineTouchData: getLineTouchDataEclecticism(), lineTouchData: const LineTouchData(enabled: false),
minX: horizontalScale['min'], minX: horizontalScale['min'],
maxX: horizontalScale['max'], maxX: horizontalScale['max'],
maxY: 100, maxY: 100,
......
...@@ -3,7 +3,7 @@ description: Display scrobbles data and charts ...@@ -3,7 +3,7 @@ description: Display scrobbles data and charts
publish_to: 'none' publish_to: 'none'
version: 0.0.18+18 version: 0.0.19+19
environment: environment:
sdk: '^3.0.0' sdk: '^3.0.0'
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment