supervons / react-native-echarts-pro

A React-Native charts based on Apache ECharts, support various charts and map.
https://supervons.github.io/react-native-echarts-pro-docs/
MIT License
216 stars 32 forks source link

关于配置项xAxis > axisLabel > color 无法执行function问题 #108

Closed Frosv closed 8 months ago

Frosv commented 1 year ago

版本 1.9.0

axisLabel: {
          color: function (value, index) {
            console.log(value);
          },
}

当前代码在echarts官网是可以运行的,也可以打印出对应参数和做相应处理,但是在react-native-echarts-pro中无法执行打印内容与其他的逻辑判断方法,仓库中的echarts是min版本的不方便找源码是否实现function,希望能看看当前是否是存在问题

congshengwu commented 1 year ago

请问是否启用了Hermes?

jianxinzhoutiti commented 1 year ago

color: function (value, index) { console.log(value); }, function inoperative

jianxinzhoutiti commented 12 months ago

打开enableParseStringFunction属性为true,function (value, index) { return "#999999" },可以执行