Is it possible to set bar width when window resize? #1403
Unanswered
GaryChiangTW
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
When window resize, the bar width could be changed at the same time?
SeriesMarket20 = new ISeries[] { new CandlesticksSeries<FinancialPointI> { MaxBarWidth = 15, UpStroke = new SolidColorPaint(upstrokecolor) { StrokeThickness = 2 }, UpFill = new SolidColorPaint(upfillcolor), DownStroke = new SolidColorPaint(downstrokecolor){StrokeThickness = 2}, DownFill = new SolidColorPaint(downfillcolor), Values = result.Select (x=> new FinancialPointI (x.HighestPrice, x.OpeningPrice, x.ClosedPrice, x.LowestPrice) ).ToArray() } };
As above, MaxBarWidth is filled.
I hope the value changed when window resize.
Beta Was this translation helpful? Give feedback.
All reactions