@apexcura/ui-components 0.0.14-Beta73 → 0.0.14-Beta74
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +16 -1
- package/dist/index.mjs +16 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1135,7 +1135,22 @@ var Donut = (props) => {
|
|
|
1135
1135
|
series: [{
|
|
1136
1136
|
type: "pie",
|
|
1137
1137
|
name: "Percentage",
|
|
1138
|
-
data:
|
|
1138
|
+
data: [{
|
|
1139
|
+
name: "Girls",
|
|
1140
|
+
y: 20,
|
|
1141
|
+
color: "#FF6384"
|
|
1142
|
+
// Custom color for Girls
|
|
1143
|
+
}, {
|
|
1144
|
+
name: "Boys",
|
|
1145
|
+
y: 40,
|
|
1146
|
+
color: "#36A2EB"
|
|
1147
|
+
// Custom color for Boys
|
|
1148
|
+
}, {
|
|
1149
|
+
name: "Students",
|
|
1150
|
+
y: 40,
|
|
1151
|
+
color: "#FFCE56"
|
|
1152
|
+
// Custom color for Students
|
|
1153
|
+
}]
|
|
1139
1154
|
}],
|
|
1140
1155
|
legend: {
|
|
1141
1156
|
enabled: true,
|
package/dist/index.mjs
CHANGED
|
@@ -1074,7 +1074,22 @@ var Donut = (props) => {
|
|
|
1074
1074
|
series: [{
|
|
1075
1075
|
type: "pie",
|
|
1076
1076
|
name: "Percentage",
|
|
1077
|
-
data:
|
|
1077
|
+
data: [{
|
|
1078
|
+
name: "Girls",
|
|
1079
|
+
y: 20,
|
|
1080
|
+
color: "#FF6384"
|
|
1081
|
+
// Custom color for Girls
|
|
1082
|
+
}, {
|
|
1083
|
+
name: "Boys",
|
|
1084
|
+
y: 40,
|
|
1085
|
+
color: "#36A2EB"
|
|
1086
|
+
// Custom color for Boys
|
|
1087
|
+
}, {
|
|
1088
|
+
name: "Students",
|
|
1089
|
+
y: 40,
|
|
1090
|
+
color: "#FFCE56"
|
|
1091
|
+
// Custom color for Students
|
|
1092
|
+
}]
|
|
1078
1093
|
}],
|
|
1079
1094
|
legend: {
|
|
1080
1095
|
enabled: true,
|