_default.php in M Chart 1.11, at components/chartjs-themes/_default.php
| 1 | <?php |
| 2 | |
| 3 | /** |
| 4 | * Theme Name: Chart.js |
| 5 | */ |
| 6 | |
| 7 | return array( |
| 8 | 'colors' => array( |
| 9 | '#56a0e5', // Blue |
| 10 | '#ed6d85', // Pink |
| 11 | '#6cbdbf', // Turquoise |
| 12 | '#f1a354', // Orange |
| 13 | '#9169f6', // Purple |
| 14 | '#f7cf6b', // Yellow |
| 15 | '#c9cbce', // Gray |
| 16 | ), |
| 17 | 'points' => array( |
| 18 | array( |
| 19 | 'point' => array( |
| 20 | // Circle |
| 21 | 'pointStyle' => 'circle', |
| 22 | ), |
| 23 | ), |
| 24 | array( |
| 25 | 'point' => array( |
| 26 | // Diamond |
| 27 | 'pointStyle' => 'rectRot', |
| 28 | ), |
| 29 | ), |
| 30 | array( |
| 31 | 'point' => array( |
| 32 | // Square |
| 33 | 'pointStyle' => 'rect', |
| 34 | ), |
| 35 | ), |
| 36 | array( |
| 37 | 'point' => array( |
| 38 | // Up Triangle |
| 39 | 'pointStyle' => 'triangle', |
| 40 | ), |
| 41 | ), |
| 42 | array( |
| 43 | 'point' => array( |
| 44 | // Down Triangle |
| 45 | 'pointStyle' => 'triangle', |
| 46 | 'rotation' => 180, |
| 47 | ), |
| 48 | ), |
| 49 | ), |
| 50 | ); |