Hi, Grafana community!
Grafana-version: 8.5.3v
Grafana Installed on :Linux version 3.10.0-862.3.3.el7.x86_64
What I am trying to archive is?
I’m trying to use the candlestick panel dual-axis mode for generating Both(Candle and Volume bars).
Issue facing?
OHLC graph and volume graph rendering as expected individually as below
OHLC GRAPH:
When I tried with Both(Candle & Volume)
Both y-axes were not indexing properly.
Panel Config using
{
"id": 7,
"gridPos": {
"h": 7,
"w": 24,
"x": 0,
"y": 0
},
"type": "candlestick",
"title": "Panel Title",
"datasource": {
"type": "influxdb",
"uid": "J2w2AzDVz"
},
"fieldConfig": {
"defaults": {
"custom": {
"drawStyle": "line",
"lineInterpolation": "linear",
"barAlignment": 0,
"lineWidth": 1,
"fillOpacity": 0,
"gradientMode": "none",
"spanNulls": false,
"showPoints": "auto",
"pointSize": 5,
"stacking": {
"mode": "none",
"group": "A"
},
"axisPlacement": "auto",
"axisLabel": "",
"scaleDistribution": {
"type": "linear"
},
"hideFrom": {
"tooltip": false,
"viz": false,
"legend": false
},
"thresholdsStyle": {
"mode": "off"
}
},
"color": {
"mode": "palette-classic"
},
"mappings": [],
"thresholds": {
"mode": "absolute",
"steps": [
{
"color": "green",
"value": null
},
{
"color": "red",
"value": 80
}
]
}
},
"overrides": []
},
"options": {
"mode": "candles+volume",
"candleStyle": "candles",
"colorStrategy": "open-close",
"colors": {
"up": "green",
"down": "red"
},
"includeAllFields": false,
"legend": {
"displayMode": "list",
"placement": "bottom",
"calcs": [ ]
}
}
}
THANK YOU!!
~ the grafana team