more efficient chart node selection

This commit is contained in:
Craig Raw 2020-11-26 15:27:25 +02:00
parent 48336bb894
commit f0ee99b78b
2 changed files with 7 additions and 8 deletions

View file

@ -82,9 +82,9 @@ public class BalanceChart extends LineChart<Number, Number> {
for(int i = 0; i < balanceSeries.getData().size(); i++) { for(int i = 0; i < balanceSeries.getData().size(); i++) {
XYChart.Data<Number, Number> data = balanceSeries.getData().get(i); XYChart.Data<Number, Number> data = balanceSeries.getData().get(i);
Node symbol = lookup(".chart-line-symbol.data" + i); if(transactionEntry.getBlockTransaction().getDate() != null && data.getXValue().equals(transactionEntry.getBlockTransaction().getDate().getTime()) && data.getExtraValue() != null) {
if(symbol != null) { Node symbol = lookup(".chart-line-symbol.data" + i);
if(transactionEntry.getBlockTransaction().getDate() != null && data.getXValue().equals(transactionEntry.getBlockTransaction().getDate().getTime()) && data.getExtraValue() != null) { if(symbol != null) {
symbol.getStyleClass().add("selected"); symbol.getStyleClass().add("selected");
selectedEntry = transactionEntry; selectedEntry = transactionEntry;
} }

View file

@ -86,11 +86,10 @@ public class UtxosChart extends BarChart<String, Number> {
for(int i = 0; i < utxoSeries.getData().size(); i++) { for(int i = 0; i < utxoSeries.getData().size(); i++) {
XYChart.Data<String, Number> data = utxoSeries.getData().get(i); XYChart.Data<String, Number> data = utxoSeries.getData().get(i);
Node bar = lookup(".data" + i);
if(bar != null) { if((data.getExtraValue() != null && entries.contains((Entry)data.getExtraValue())) || (data.getExtraValue() == null && entries.size() == totalUtxos)) {
if(data.getExtraValue() != null && entries.contains((Entry)data.getExtraValue())) { Node bar = lookup(".data" + i);
bar.getStyleClass().add("selected"); if(bar != null) {
} else if(data.getExtraValue() == null && entries.size() == totalUtxos) {
bar.getStyleClass().add("selected"); bar.getStyleClass().add("selected");
} }
} }