<!-- MORRIS-CHART JS -->
<script src="../assets/plugins/morris/raphael-min.js"></script>
<script src="../assets/plugins/morris/morris.js"></script>
<script src="../assets/js/morris.js"></script>
Below js is in morris.js(assets/js/morris.js). Every chart has unique I'ds, Based on id's or Classes you can Search the charts in morris.js file
new Morris.Bar({
element: 'morrisBar5',
data: day_data,
xkey: 'period',
ykeys: ['licensed', 'sorned'],
labels: ['Licensed', 'SORN'],
barColors: ['#6c5ffc', '#05c3fb'],
xLabelAngle: 0,
resize: true
});
Note : After Changing scss you must run gulp command i.e, gulp watch
. Refer gulp page for more gulp commands click here.