gpt4 book ai didi

flutter - 是否有任何选项可以在 flutter fl_charts 中指定 x 轴和 y 轴上的值之间的间隔?

转载 作者:行者123 更新时间:2023-12-05 04:51:50 25 4
gpt4 key购买 nike

enter image description here折线图(

    LineChartData(
minX: 0,
maxX: 40,
minY: 0,

lineBarsData: [
LineChartBarData(

spots: fl,
isCurved: true,
barWidth: 5,
)
]
)

),

这是我在 x 轴上的代码值重叠。我正在使用 fl_charts 进行 flutter ,是否有任何选项可以指定轴值之间的间隔?

最佳答案

折线图数据(最小值:0,maxX: 40,

                        gridData: FlGridData(
show: false,
),
titlesData: FlTitlesData(
bottomTitles: SideTitles(
showTitles: true,
reservedSize: 22,
getTextStyles: (value) => const TextStyle(
color: CColors.pink,
fontWeight: FontWeight.bold,
fontSize: 16,
),
margin: 10,
getTitles: (value) {
if(value.toInt() % 5 == 0){
return '${value.toInt()}';
}else{
return '';
}},
),
leftTitles: SideTitles(
showTitles: true,
getTextStyles: (value) => const TextStyle(
color: CColors.pink,
fontWeight: FontWeight.bold,
fontSize: 14,
),
getTitles: (value) {
if(value.toInt() % 25 == 0){
return '${value.toInt()}';
}else{
return '';
}
},
margin: 8,
reservedSize: 30,
),
),
borderData: FlBorderData(
show: true,

),
lineBarsData: [
LineChartBarData(

spots: fl,
colors: [CColors.pink],
barWidth: 5,
),
],
),

关于flutter - 是否有任何选项可以在 flutter fl_charts 中指定 x 轴和 y 轴上的值之间的间隔?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66757233/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com