PluginProbe
M Chart / 1.11
M Chart v1.11
2.3.2 2.3.1 2.3 2.2.2 2.2.1 2.2 trunk 1.0 1.1 1.1.1 1.1.2 1.1.3 1.1.4 1.1.5 1.10 1.10.1 1.11 1.11.1 1.11.2 1.12 1.2 1.2.1 1.3 1.3.1 1.3.2 All 53 releases
m-chart / components / chartjs-themes / _default.php

_default.php in M Chart 1.11, at components/chartjs-themes/_default.php

50 lines 728 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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 );