RoXoM

Results 52 comments of RoXoM

@oreqizer If you want to use `[email protected]`. The better way is use the lib from es dir: ``` import { XXX } from 'react-relay-network-modern/es' ```

For this repository, I don't think it needs to consider the runtime-env. Compatibility issues should be addressed in business project. A and B project depend on RRNL, A project only...

source-map-explorer 分析得 默认依赖文件 `node_modules/@antv/data-set/build/data-set.js` 占用 618.37kb. 该文件未压缩。 可以尝试: ```js // import DataSet from '@antv/data-set' import DataSet from '@antv/data-set/lib' ``` 这么使用后我这边降到了 56.79kb

Why i can't use country-specific query? Is it supported before?? https://browsersl.ist/?q=%3E0.1%25+in+US ``` Error: Cannot Find Module 'Caniuse-Lite/Data/Regions/US.Js' ```

碰到同样的需求。 是否存在基于 effect 自己封装组件的可能性? https://g2.antv.vision/zh/docs/api/general/scrollbar

如果不使用 plot - BarChart。 可以使用 Effects 调用 g2 的 api 开启 scrollbar ```jsx {/* */} {/* */} {(chart) => { chart.option("scrollbar", { type: "vertical" }); }} ``` https://bizcharts.net/product/BizCharts4/category/62/page/77#chart-%E7%9A%84%E5%AE%9E%E4%BE%8B%E6%9C%89%E5%93%AA%E4%BA%9B%E6%96%B9%E6%B3%95%E5%8F%AF%E4%BB%A5%E8%B0%83%E7%94%A8

https://github.com/antvis/G2/issues/3605 升级 g2 至 4.1.36 后支持鼠标滚动。 ``` {(chart) => { chart.interaction("plot-mousewheel-scroll"); chart.option("scrollbar", { type: "vertical", // enableMouseWheel: true, // not working.. }); }} ```

I got this problem too. And i found PR 259 had been merged. https://github.com/rotaready/moment-range/pull/259 Before release a new version you can implement it in your project. It is easy to...

A workaround before it fix. DB Column is lngLat, ie `112,23` Add new `Metric` or `Calculated Columns`. (I still don't understand the difference between the two) ``` # SQL Expression...