Graphing data by selected date

Hi, I’m looking to create a graph showing the data according to the date selected by the user. Any suggestions on how to do this? Is it with a dashboard?

I already create this, using quickchart.io, but I can´t modify the size of the text in the amounts, only in the center and I want to learn how to do this with chart in appssheet

3X_1_5_1565e1926c77a77bd7cadc3bf73f2cbd6e2d0344.png

Thank you very much as always for your help!

0 4 462
  • UX
4 REPLIES 4

@Juan_Gutierrez
You can specify the font size in the URL params:

https://quickchart.io/chart?c={type:'doughnut',data:{labels:['January','February','March','April','May'],datasets:[{data:[50,60,70,180,190]}]},options:{plugins:{doughnutlabel:{labels:[{text:'550',font:{size:20}},{text:'total'}]}}}}

https://quickchart.io/documentation/#doughnut-chart
https://www.chartjs.org/docs/latest/charts/doughnut.html


https://quickchart.io/documentation/chart-js/custom-pie-doughnut-chart-labels/

Many thanks!! I did that, but only works for the middle part, not for the numbers in a donut let me check the documentation in order to know which is my mistake (appear 100 but I tried with 1000 and nothing)

Hola, intenta cambiar por esto:
options: {
plugins:{
legend: false,
outlabels:{
color: ‘white’,
stretch: 55,
font: {
resizable: true,
minSize: 12,
maxSize: 16
}
}
}
}

perdon, era aqui, intenta cambiar por esto:

options: {
plugins:{
legend: false,
outlabels:{
color: ‘white’,
stretch: 55,
font: {
resizable: true,
minSize: 12,
maxSize: 16
}
}
}
}

Top Labels in this Space