Closed Afellman closed 1 year ago
It's a reasonable request, we will add a method in next release and will let you know.
@zeroin Great, thank you!
Implemented in 5.4.9.
drawingsInteractive(value: bool)
method added to StockChart
. false
will make current annotations (drawings) to be fully static (non-editable).XYChart
was not focusable.PieSeries
could overlap with other slices if some slices were hidden.XYChart
.StockChart
were being colored based on previous period close value instead of current period open value.Make sure you clear your browser cache after upgrading. And feel free to contact us again if you are still experiencing this issue.
Thank you!
@martynasma Is there a trick to getting this to work? The toggle doesn't appear to be doing anything.
Editing is disabled, albeit hover and drag is still active. We'll fix it. Thanks for letting us know.
Fixed in 5.4.11.
SliceGrouper
would use first color in series for a "group" slice if series was using a color set with custom list of colors.5.4.10
).forceInactive
was not working on Container
.drawingsInteractive(value: bool)
method in StockChart
was not working properly.Make sure you clear your browser cache after upgrading. And feel free to contact us again if you are still experiencing this issue.
Hi,
I would like the ability to disable all user interactions with drawings, specifically on the stock chart.
Use Case User enters draw mode, draws many things, leaves draw mode (toggle drawingControl "active" setting), then we don't want the user to be able to interact with these created drawings while they are navigating the chart. We also have a click event on our candle series and drawing anything over a candle disables the click event.
I am imagining a simple setting on the drawingControl
drawingControl.set("userInteraction", false);
or something equivalent.