Hello!
I’m trying to make a graph using a data from a data table (custom chart block). However, the graph is only reading 1000 of my 10040 rows. How can I include all data?
Thanks in advance!
My script:
{
“width”: {{block.width}},
“height”: {{block.height}},
“autosize”: {
“type”: “fit”,
“contains”: “padding”
},
“config”: {
“axis”: {
“labelColor”: “#888c95”,
“titleColor”: “#888c95”,
“domain”: false
},
“legend”: {
“labelColor”: “#888c95”,
“titleColor”: “#888c95”
}
},
“data”: {
“name”: “data-table-0”
},
“mark”: “line”,
“encoding”: {
“x”: {
“field”: “DATA”,
“type”: “temporal”,
“scale”: {“domain”: [“03/05/2018 00:40”,“03/12/2018 00:40”]}
},
"y": {
"field": "Ua",
"type": "quantitative",
"scale": {"domain": [150,250]}
}
}
}