@apexcura/ui-components 0.0.14-Beta132 → 0.0.14-Beta133
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 +6 -6
- package/dist/index.mjs +6 -6
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1245,9 +1245,9 @@ var SemiCircleDonut = (props) => {
|
|
|
1245
1245
|
ctx.fillStyle = "black";
|
|
1246
1246
|
ctx.textAlign = "center";
|
|
1247
1247
|
ctx.textBaseline = "middle";
|
|
1248
|
-
ctx.fillText(
|
|
1248
|
+
ctx.fillText(props.fillText1, centerX, centerY - 10);
|
|
1249
1249
|
ctx.font = "12px Arial";
|
|
1250
|
-
ctx.fillText(
|
|
1250
|
+
ctx.fillText(props.fillText2, centerX, centerY + 20);
|
|
1251
1251
|
ctx.restore();
|
|
1252
1252
|
}
|
|
1253
1253
|
};
|
|
@@ -1352,7 +1352,7 @@ var LineChart = (props) => {
|
|
|
1352
1352
|
scales: {
|
|
1353
1353
|
x: {
|
|
1354
1354
|
grid: {
|
|
1355
|
-
display:
|
|
1355
|
+
display: false
|
|
1356
1356
|
}
|
|
1357
1357
|
},
|
|
1358
1358
|
y: {
|
|
@@ -1364,7 +1364,7 @@ var LineChart = (props) => {
|
|
|
1364
1364
|
}
|
|
1365
1365
|
},
|
|
1366
1366
|
grid: {
|
|
1367
|
-
display:
|
|
1367
|
+
display: true
|
|
1368
1368
|
}
|
|
1369
1369
|
}
|
|
1370
1370
|
}
|
|
@@ -1422,7 +1422,7 @@ var DoubleBarChart = (props) => {
|
|
|
1422
1422
|
scales: {
|
|
1423
1423
|
x: {
|
|
1424
1424
|
grid: {
|
|
1425
|
-
display:
|
|
1425
|
+
display: false
|
|
1426
1426
|
// Display x-axis grid lines
|
|
1427
1427
|
}
|
|
1428
1428
|
},
|
|
@@ -1435,7 +1435,7 @@ var DoubleBarChart = (props) => {
|
|
|
1435
1435
|
}
|
|
1436
1436
|
},
|
|
1437
1437
|
grid: {
|
|
1438
|
-
display:
|
|
1438
|
+
display: true
|
|
1439
1439
|
}
|
|
1440
1440
|
}
|
|
1441
1441
|
},
|
package/dist/index.mjs
CHANGED
|
@@ -1191,9 +1191,9 @@ var SemiCircleDonut = (props) => {
|
|
|
1191
1191
|
ctx.fillStyle = "black";
|
|
1192
1192
|
ctx.textAlign = "center";
|
|
1193
1193
|
ctx.textBaseline = "middle";
|
|
1194
|
-
ctx.fillText(
|
|
1194
|
+
ctx.fillText(props.fillText1, centerX, centerY - 10);
|
|
1195
1195
|
ctx.font = "12px Arial";
|
|
1196
|
-
ctx.fillText(
|
|
1196
|
+
ctx.fillText(props.fillText2, centerX, centerY + 20);
|
|
1197
1197
|
ctx.restore();
|
|
1198
1198
|
}
|
|
1199
1199
|
};
|
|
@@ -1304,7 +1304,7 @@ var LineChart = (props) => {
|
|
|
1304
1304
|
scales: {
|
|
1305
1305
|
x: {
|
|
1306
1306
|
grid: {
|
|
1307
|
-
display:
|
|
1307
|
+
display: false
|
|
1308
1308
|
}
|
|
1309
1309
|
},
|
|
1310
1310
|
y: {
|
|
@@ -1316,7 +1316,7 @@ var LineChart = (props) => {
|
|
|
1316
1316
|
}
|
|
1317
1317
|
},
|
|
1318
1318
|
grid: {
|
|
1319
|
-
display:
|
|
1319
|
+
display: true
|
|
1320
1320
|
}
|
|
1321
1321
|
}
|
|
1322
1322
|
}
|
|
@@ -1374,7 +1374,7 @@ var DoubleBarChart = (props) => {
|
|
|
1374
1374
|
scales: {
|
|
1375
1375
|
x: {
|
|
1376
1376
|
grid: {
|
|
1377
|
-
display:
|
|
1377
|
+
display: false
|
|
1378
1378
|
// Display x-axis grid lines
|
|
1379
1379
|
}
|
|
1380
1380
|
},
|
|
@@ -1387,7 +1387,7 @@ var DoubleBarChart = (props) => {
|
|
|
1387
1387
|
}
|
|
1388
1388
|
},
|
|
1389
1389
|
grid: {
|
|
1390
|
-
display:
|
|
1390
|
+
display: true
|
|
1391
1391
|
}
|
|
1392
1392
|
}
|
|
1393
1393
|
},
|