Switch main theme graphing library to echarts (#1487)

* Switches from Plotly to echarts. Saves file space and allows for more flexibility in graphing types. 
* Changes colorHash slightly to change color output for demo data. 
* Closes #1433
This commit is contained in:
Kevin Chung
2020-06-13 12:18:41 -04:00
committed by GitHub
parent c3897f9527
commit bacb8977a4
63 changed files with 800 additions and 410 deletions

View File

@@ -74,10 +74,10 @@ function getJSConfig(root, type, entries, mode) {
splitChunks: {
chunks: 'all',
cacheGroups: {
plotly: {
name: 'plotly',
filename: `plotly.bundle.${ext}.js`,
test: /plotly/,
echarts: {
name: 'echarts',
filename: `echarts.bundle.${ext}.js`,
test: /echarts/,
priority: 1,
enforce: true,
},