Results 5 comments of eternallycyf

全局脚手架貌似和别的包的版本冲突? 我的脚手架之前是dev 可以 , build 不行 一直请求超时, 梯子也不行 重新安装 node npm后 1. ```js 目录: ./docs/README.md 命令: rcpress dev 结果: 报错 Uncaught TypeError: Cannot read properties of undefined (reading 'path') react-dom.development.js?68de:19528...

https://g2.antv.vision/zh/docs/manual/tutorial/scale#%E5%BA%A6%E9%87%8F%E5%AE%9A%E4%B9%89 无序绑定的字段的要自己指定下顺序

是否指刻度线太少? 通过这几个属性调整(tickCount,tickMethod,nice任选其一) ```js xAxis:{ nice: true, min: 0, max: 35, tickInterval: 7, tickCount: 8, tickMethod: function tickMethod(_ref) { var max = _ref.max; var interval = Math.ceil(max / 9); return [...

> 我也遇到了这个问题,请问你解决了吗 先锁定版本把 @Evey-huang ```json "devDependencies":{ "dumi": "~2.2.x", }, "resolutions": { "dumi": "~2.2.x" }, ```

按照楼上的select 版本, 做了个简易版 注意的是 DatePicker 的 onchange 事件 取消时触发有问题 需要加 value={''} ## js ```js import React, { useState } from "react"; import { DatePicker, Button } from "antd"; import moment...