XING Yun
XING Yun
Got the same issue here today. My environment: * Airflow: 1.10.11 * Deploy method: I deployed [bitnami/airflow](https://github.com/bitnami/charts/tree/master/bitnami/airflow) to kubernets * get rest api works well with JWT tokens Error: Got...
This is confirmed a bug. The bug-fix will be delivered in the next release.
[v2.2.7](https://github.com/BigFatDog/parcoords-es/releases/tag/v2.2.7) has bee published to fix this bug.
@timelyportfolio I have gone through your code. Per your questions: 1. We can apply `filter` function to other brushes after we agree on how to add this function. 2. I...
Solution to the error message: add a `.babelrc` to your project and then run `rollup again`: ``` { "presets": ["es2015"], "plugins": ["transform-object-rest-spread"] } ``` This will help transpile [spread operators](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Spread_syntax)...
You’re welcome. dc.js was one of important guides for me to learn d3.js. I knew existence of crossfilter via dc.js I learn a lot from you.
Hi @ajbouh Thank you for your appreciation. The autodesk fork that you mentioned are based on the original [parallel-coordinates](https://github.com/syntagmatic/parallel-coordinates) therefore that pull request cannot be applied to `parcoords-es` directly. Yes,...
No, it cannot be modified. I guess you were mentioning `d3 line interpolation`: ``` curveLinear, curveMonotoneX ... ```
Would you please post your error messages here so that I can give it a try? I just tested `parcoords-es` in a react app and it works. Environment and sample...
> Something like: > ```Parcoords()(chartRef.current)``` Yes. I just tested. I used id because I was not totally sure if the current parcoords would work with `chartRef.current`. Should try ref way...