n8n/packages/nodes-base/nodes/QuickChart/test/QuickChart.workflow.json
Tomi Turtiainen 31850f7996
refactor(core): Replace Code nodes with TestDataNode in workflow test fixtures (#25893)
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-18 07:19:20 +00:00

148 lines
2.8 KiB
JSON

{
"meta": {
"instanceId": "104a4d08d8897b8bdeb38aaca515021075e0bd8544c983c2bb8c86e6a8e6081c"
},
"nodes": [
{
"parameters": {},
"id": "5ebe2f65-45db-4b22-bd2b-43993c20806f",
"name": "When clicking \"Execute Workflow\"",
"type": "n8n-nodes-base.manualTrigger",
"typeVersion": 1,
"position": [740, 320]
},
{
"parameters": {
"data": [
{
"label": "Free Users",
"labels": ["Berlin", "Paris", "Rome", "New York"],
"data": [50, 60, 70, 180],
"backgroundColor": "#121d6d77",
"chartType": "line"
},
{
"label": "Paid Users",
"labels": ["Berlin", "Paris", "Rome", "New York"],
"data": [30, 10, 14, 25],
"backgroundColor": "#0c0d0d96",
"chartType": "bar"
}
]
},
"id": "2e81f78c-41a5-48de-80c4-74abf163cd57",
"name": "Code",
"type": "n8n-nodes-testing.testData",
"typeVersion": 1,
"position": [980, 320]
},
{
"parameters": {
"labelsUi": {
"labelsValues": [
{
"label": "Q1"
},
{
"label": "Q2"
},
{
"label": "Q3"
},
{
"label": "Q4"
}
]
},
"data": "={{ $json.data }}",
"chartOptions": {
"backgroundColor": "#f93636ff",
"devicePixelRatio": 2,
"format": "png",
"height": 300,
"horizontal": true,
"width": 500
},
"datasetOptions": {
"backgroundColor": "={{ $json[\"backgroundColor\"] }}",
"borderColor": "#e81010",
"label": "={{ $json[\"label\"] }}"
}
},
"name": "BarChart",
"type": "n8n-nodes-base.quickChart",
"typeVersion": 1,
"position": [1220, 200],
"id": "9f6c9d1c-2732-473f-a357-5766265cd0db"
},
{
"parameters": {
"chartType": "doughnut",
"labelsUi": {
"labelsValues": [
{
"label": "Q1"
},
{
"label": "Q2"
},
{
"label": "Q3"
},
{
"label": "Q4"
}
]
},
"data": "={{ $json.data }}",
"chartOptions": {
"backgroundColor": "#f93636ff",
"devicePixelRatio": 2,
"format": "png",
"height": 300,
"width": 500
},
"datasetOptions": {
"backgroundColor": "={{ $json[\"backgroundColor\"] }}",
"borderColor": "#e81010",
"label": "={{ $json[\"label\"] }}"
}
},
"name": "Doughnut",
"type": "n8n-nodes-base.quickChart",
"typeVersion": 1,
"position": [1220, 400],
"id": "6c8e1463-c384-4f5c-9de3-d7e052b02b0a"
}
],
"connections": {
"When clicking \"Execute Workflow\"": {
"main": [
[
{
"node": "Code",
"type": "main",
"index": 0
}
]
]
},
"Code": {
"main": [
[
{
"node": "BarChart",
"type": "main",
"index": 0
},
{
"node": "Doughnut",
"type": "main",
"index": 0
}
]
]
}
}
}