mirror of
https://github.com/bisq-network/bisq.git
synced 2024-11-19 09:52:23 +01:00
Adapt chart axis labels
This commit is contained in:
parent
8c027836b6
commit
fab6f74199
@ -1040,9 +1040,9 @@ textfield */
|
||||
-fx-alignment: center;
|
||||
}
|
||||
|
||||
#charts .axis {
|
||||
#charts .axis, #price-chart .axis, #volume-chart .axis {
|
||||
-fx-tick-label-fill: -bs-black;
|
||||
-fx-tick-label-font-size: 0.923em;
|
||||
-fx-tick-label-font-size: 0.846em;
|
||||
-fx-tick-label-font-family:"Roboto Condensed Light";
|
||||
}
|
||||
|
||||
|
@ -313,6 +313,7 @@ public class TradesChartsView extends ActivatableViewAndModel<VBox, TradesCharts
|
||||
return null;
|
||||
}
|
||||
});
|
||||
priceChart.setId("price-chart");
|
||||
priceChart.setMinHeight(198);
|
||||
priceChart.setPrefHeight(198);
|
||||
priceChart.setMaxHeight(300);
|
||||
@ -357,6 +358,7 @@ public class TradesChartsView extends ActivatableViewAndModel<VBox, TradesCharts
|
||||
}
|
||||
});
|
||||
//noinspection unchecked
|
||||
volumeChart.setId("volume-chart");
|
||||
volumeChart.setData(FXCollections.observableArrayList(volumeSeries));
|
||||
volumeChart.setMinHeight(148);
|
||||
volumeChart.setPrefHeight(148);
|
||||
|
Loading…
Reference in New Issue
Block a user