Skip to content

Instantly share code, notes, and snippets.

@marguslt
Last active October 1, 2020 11:36
Show Gist options
  • Save marguslt/793e2a9a227a57931c0031aa456e30b4 to your computer and use it in GitHub Desktop.
Save marguslt/793e2a9a227a57931c0031aa456e30b4 to your computer and use it in GitHub Desktop.
Movescount chart tune, improve readability of multi-series charts by changing chart colors.

Manipulating with Movescount charts.

Original: image After changing style.stroke with

document.querySelector("#moveCharts-chart > div > svg > g.highcharts-series-group > g:nth-child(3) > path").style.stroke="#aa0000";
document.querySelector("#moveCharts-chart > div > svg > g.highcharts-series-group > g:nth-child(5) > path").style.stroke="#00aa00";

image

document.querySelector("#moveCharts-chart > div > svg > g.highcharts-series-group > g:nth-child(3) > path").style.stroke="#aa0000";
document.querySelector("#moveCharts-chart > div > svg > g.highcharts-series-group > g:nth-child(5) > path").style.stroke="#00aa00";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment