echarts-theme-builder
echarts-theme-builder copied to clipboard
Design your own theme for Apache ECharts.
The default value of background of halloween theme does not seem correct, see below.  due to 0.5 opacity the background colors were messed up, so after...
我最近在用electron写主题配置的功能  但是我想基于官网的配置再增加其他, 可是我并不知道完整的配置都有哪些, [在echarts issue没人回答](https://github.com/apache/echarts/issues/19159), 而且目前的主题配置, 时间戳(timeline.itemStyle.borderWidth)不起作用 @Ovilia , 希望作者能出来解答下
现在: ``` "label": { "normal": { "textStyle": { "color": "#ffffff" } }, "emphasis": { "textStyle": { "color": "#3fb1e3" } } } ``` 5.x规则: ``` "label": { "color": "#ffffff" }, "emphasis":...
问题描述:使用了自定义主题之后,echarts按需引入失效 echarts版本 5.1.2,使用的是js版本的主题 echarts按需引入不使用自定义主题,打包构建之后echarts的大小367kb ehcarts整体引入不使用自定义主题,打包构建799kb echarts按需引入并使用自定义主题,打包构建809kb echarts整体引入并使用自定义主题,打包构建799kb 按需引入配置如下,也很常规,自定义主题基于官网主题编辑器默认方案修改了个别颜色 ``` import { use } from 'echarts/core'; import { CanvasRenderer } from 'echarts/renderers'; import { PieChart, LineChart, MapChart } from 'echarts/charts'; import...
this is a feature PR, in dark business scenarios, we can configure the text color and background color of tooltip.
When running, missing third-party dependencies.  What am I doing wrong? Thanks in advance
Hi! How can you import it to an angular project? Regards
```json "boxplot": { "itemStyle": { "borderWidth": 0, "borderColor": "#ccc" } }, ``` 这是官方对于盒须图的itemStyle字段的配置 但这会导致盒须图在主题下的框体不可见且内部填充色为白色,无法正常显示相关图表需要传达的信息。 ```json "boxplot": { "itemStyle": { "color": "none", "borderWidth": 1.3, "borderColor": "auto" } }, ``` 如上,通过配置color为空,框体厚度及框体颜色为auto来适配主题下color不同调色卡,从而能够正常绘制盒须图。