We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dd8a416 commit 89e8c7eCopy full SHA for 89e8c7e
client/src/components/geoJS/LayerManager.vue
@@ -756,6 +756,9 @@ export default defineComponent({
756
if (legendLayer) {
757
legendLayer.setTextColor(textColor);
758
}
759
+ if (axesLayer) {
760
+ axesLayer.setTextColor(textColor);
761
+ }
762
if (timeLayer) {
763
timeLayer.setTextColor(textColor);
764
client/src/components/geoJS/layers/axesLayer.ts
@@ -501,6 +501,11 @@ export default class AxesLayer extends BaseTextLayer<TickTextData> {
501
502
503
504
+ setTextColor(newColor: string): void {
505
+ this.color = newColor;
506
+ this.drawAxes();
507
508
+
509
createAxesStyle() {
510
return {
511
strokeWidth: 1,
0 commit comments