@oliasoft-open-source/charts-library 3.6.0 → 3.7.0-beta-2
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
CHANGED
|
@@ -13184,9 +13184,9 @@ const BORDER_WIDTH = {
|
|
|
13184
13184
|
};
|
|
13185
13185
|
const BORDER_COLOR = "rgba(0,0,0,0.1)";
|
|
13186
13186
|
const ANNOTATION_DASH = [10, 2];
|
|
13187
|
-
const DEFAULT_FONT_SIZE =
|
|
13188
|
-
const DEFAULT_FONT_FAMILY = '"
|
|
13189
|
-
const DEFAULT_COLOR = "
|
|
13187
|
+
const DEFAULT_FONT_SIZE = 12;
|
|
13188
|
+
const DEFAULT_FONT_FAMILY = '"Roobert", sans-serif';
|
|
13189
|
+
const DEFAULT_COLOR = "hsl(60, 10.34482759%, 12.5%)";
|
|
13190
13190
|
const LEGEND_LABEL_BOX_SIZE = 12;
|
|
13191
13191
|
const TOOLTIP_PADDING = 8;
|
|
13192
13192
|
const TOOLTIP_BOX_PADDING = 4;
|
|
@@ -25239,7 +25239,7 @@ const getLineChartAxis = (options, axisType, state, currentScales, i2 = 0) => {
|
|
|
25239
25239
|
//OW-10088 disable irregular axis ticks
|
|
25240
25240
|
...ticksConfigFromProps,
|
|
25241
25241
|
font: {
|
|
25242
|
-
size:
|
|
25242
|
+
size: DEFAULT_FONT_SIZE
|
|
25243
25243
|
}
|
|
25244
25244
|
};
|
|
25245
25245
|
return ticks;
|
|
@@ -39120,7 +39120,7 @@ const getBarChartAxis = ({
|
|
|
39120
39120
|
//OW-10088 disable irregular axis ticks
|
|
39121
39121
|
...ticksConfigFromProps,
|
|
39122
39122
|
font: {
|
|
39123
|
-
size:
|
|
39123
|
+
size: DEFAULT_FONT_SIZE
|
|
39124
39124
|
}
|
|
39125
39125
|
};
|
|
39126
39126
|
return ticks;
|