Jae Sung Park

Results 153 comments of Jae Sung Park

@creage, looks simple, but doing that it needs to make whole refactoring on data conversion. You can use [`data.names`](https://naver.github.io/billboard.js/release/latest/doc/Options.html#.data%25E2%2580%25A4names) option to handle this issue. > BTW, `data.order` option isn't for...

This can be pretty confusing in some cases on how it should behave. So, for now will be let `as-is`. If anyone has 'nice' or 'straightforward' ideas, plz leave comments....

It needs to check on that. Did you tried `color.tiles` option? - https://naver.github.io/billboard.js/demo/#ChartOptions.ColorTiles2

The drag action consist on: User `drags` area and the dragged area is represented with the colored `selection` background. If extent is enabled, how the action should be limited? -...

Hi @adschm, thanks for the issue. This might be similar with #1082. I will consider for the next release.

There's no explicit option to styling as `data.marker`, because styling needs are quite variant for each use cases. In most cases you can style directly defining CSS rules. For example,...

@serres2, well there're two ways for now: - Dispatch programmatically mouse event for subchart selection area ```js function resetSubchart(inst) { const el = inst.$.svg.select(".overlay").node(); const evtOption = { view: window,...

@serres2, improved to reset zoom state when `.flush()` is called. Try the `@next` release and the stable will be released soon. ```sh npm i billboard.js@next ```

@watnab, the recommendations is not to use zoom & subchart together and the code needs to be organized. Also, from the v2 modularization, `.unzoom()` can be used when `zoom` module...

> is it wrong way to use zoom api with sub chart? well, in a general perspective they should work together, but doing that, it needs both functionalities & interactiontions...