estanglerbm
estanglerbm
"evt" is a mx.rpc.events.ResultEvent, so "evt.result" is declared Object but, with e4x, is an XMLList, I believe. It's the result of an HTTPService request. (The XML has ....) I'll try...
Yes, putting XMLList around "result" is a workaround for the compiler error: `var resp : XMLList = XMLList( (evt.result as XMLList).*::response );` or `var resp : XMLList = XMLList( XMLList(evt.result).*::response...
I'll try to provide input. I just noticed updates on this issue (not getting email about it for whatever reason).
``new RegExp("a | b", "gx")`` produces this runtime error: ``Uncaught SyntaxError: invalid regular expression flag x`` The ``x`` is extended syntax, to allow spaces to be in the expression for...
Calling chart.update() [to force the tooltip.enable = true to take effect] in onPanComplete() / onZoomComplete() can also cause temporary drawing issues on the edges of the chart during transition, like...
Confirmed (at the provided link). Looks like a bug.
wheelPreconditions() can call preventDefault(). Hammer.js (for touch events) also can call preventDefault(). Don't know if CSS touch-action + touchAction = auto would be a future possibility. Maybe all this doesn't...
Could you show an example? (I can keep 0 in view by doing a drag zoom, and I can't imagine other examples.)
Panning is if you set the range to show Jan 2-5, and then you want to move that view to earlier and later (continuing to only show the span of...
If you don't want to use the type defs from #12, then here's just the quick workaround suggested by `ng serve` output in Angular. For ES2015 Angular 15, after `npm...