@Override
protected void updatePointXValuesIfNotPresent() {
double pointStart = (double) getDefPointStart();
double pointInterval = 3600000; // 1 hour
if (super.getConfig() instanceof BaseLineConfig) {
BaseLineConfig config = (BaseLineConfig) super.getConfig();
if (config.getPointStart() != null) {
pointStart = config.getPointStart();
}
if (config.getPointInterval() != null) {
pointInterval = config.getPointInterval();
}
}
Date prevDate = new Date((long) pointStart);
int count = 0;
for (DateTimePoint point : getPoints()) {