dc.cw("ScatterChart", "widget_grafico", {
id: "grafico"
, "config": {
"type": "scatter"
, "data": {
"datasets": [{
"type": "line"
, "data": [{
"x": -10
, "y": 0
}, {
"x": 0
, "y": 10
}, {
"x": 10
, "y": 5
}, {
"x": 8
, "y": 14
}, {
"x": 12
, "y": 2
}, {
"x": 13
, "y": 7
}, {
"x": 6
, "y": 9
}]
, "label": "Conjunto de dados vermelho"
, "hidden": false
, "borderColor": "rgb(249, 24, 24)"
, "showLine": false
, "spanGaps": false
}]
}
, "options": {
"showLines": false
, "spanGaps": false
, "scales": {
"x": {
"offset": false
, "position": "bottom"
, "stacked": false
, "type": "linear"
}
}
, "plugins": {
"title": {
"display": true
, "text": "Gráfico de dispersão"
}
}
}
}
});