There are no reviews yet. Be the first to send feedback to the community and the maintainers!
Repository Details
Chart.qml like Chart.js
Chart.qml
// draw a bar
object bar(data,option)
// draw a doughnut
object doughnut(data,option)
// draw a line
object line(data,option)
// draw a pie
object pie(data,option)
// draw a polarArea
object polarArea(data,option)
// draw a radar
object radar(data,option)
doughnut([
{
value: 30,
color:"#F7464A"
},
{
value : 50,
color : "#E2EAE9"
},
{
value : 100,
color : "#D4CCC5"
},
{
value : 40,
color : "#949FB1"
},
{
value : 120,
color : "#4D5360"
}
]);