You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Having both volume and candlesticks in the same place on the K-chart is nice, but I think it would look better and be less obstructive if the volume were drawn behind the candlesticks.
Additionally, it would be great to have an option to display the volume in a separate panel to reduce clutter.
The text was updated successfully, but these errors were encountered:
@shujaatak
You can put volume in a separate "GPanel" see Panels demo for sample implementation.
or you can config the candlestick graph's viewport marginStart like this
GValueViewPort(
id:"price",
valuePrecision:2,
autoScaleStrategy:GValueViewPortAutoScaleStrategyMinMax(
dataKeys: [
keyHigh,
keyLow,
keySMA,
keyIchimokuSpanA,
keyIchimokuSpanB,
],
marginStart:GSize.viewHeightRatio(0.3), // while bar chart has marginEnd: GSize.viewHeightRatio(0.7)
),
),
I need to add more documentation regarding the available options.
Having both volume and candlesticks in the same place on the K-chart is nice, but I think it would look better and be less obstructive if the volume were drawn behind the candlesticks.
Additionally, it would be great to have an option to display the volume in a separate panel to reduce clutter.
The text was updated successfully, but these errors were encountered: