실시간 차트 보조지표 값 소수점 표시
This commit is contained in:
@@ -90,6 +90,8 @@ public class AppSettingsService {
|
||||
Boolean.parseBoolean(d.get("btAutoPopup").toString()));
|
||||
if (d.containsKey("btShowPrice")) s.setBtShowPrice(
|
||||
Boolean.parseBoolean(d.get("btShowPrice").toString()));
|
||||
if (d.containsKey("chartCandleAreaPriceLabels")) s.setChartCandleAreaPriceLabels(
|
||||
Boolean.parseBoolean(d.get("chartCandleAreaPriceLabels").toString()));
|
||||
if (d.containsKey("chartSeriesPriceLabels")) s.setChartSeriesPriceLabels(
|
||||
Boolean.parseBoolean(d.get("chartSeriesPriceLabels").toString()));
|
||||
if (d.containsKey("chartVolumeVisible")) s.setChartVolumeVisible(
|
||||
@@ -198,6 +200,7 @@ public class AppSettingsService {
|
||||
m.put("syncOptions", parseJson(s.getSyncOptionsJson()));
|
||||
m.put("btAutoPopup", s.getBtAutoPopup() != null ? s.getBtAutoPopup() : true);
|
||||
m.put("btShowPrice", s.getBtShowPrice() != null ? s.getBtShowPrice() : true);
|
||||
m.put("chartCandleAreaPriceLabels", s.getChartCandleAreaPriceLabels() != null ? s.getChartCandleAreaPriceLabels() : true);
|
||||
m.put("chartSeriesPriceLabels", s.getChartSeriesPriceLabels() != null ? s.getChartSeriesPriceLabels() : true);
|
||||
m.put("chartVolumeVisible", s.getChartVolumeVisible() != null ? s.getChartVolumeVisible() : true);
|
||||
m.put("chartLiveReceiveHighlight", s.getChartLiveReceiveHighlight() != null ? s.getChartLiveReceiveHighlight() : true);
|
||||
|
||||
Reference in New Issue
Block a user