Map chart interpolation parameter into sitemap JSON response (#4917)

This was missed in #4610 / commit a9a289e3f2

Signed-off-by: Danny Baumann <dannybaumann@web.de>
This commit is contained in:
maniac103
2025-07-22 07:08:20 +02:00
committed by GitHub
parent 88d05e54f4
commit a4c6b49be1
2 changed files with 2 additions and 0 deletions
@@ -699,6 +699,7 @@ public class SitemapResource
bean.legend = chartWidget.getLegend();
bean.forceAsItem = chartWidget.getForceAsItem();
bean.yAxisDecimalPattern = chartWidget.getYAxisDecimalPattern();
bean.interpolation = chartWidget.getInterpolation();
if (chartWidget.getRefresh() > 0) {
bean.refresh = chartWidget.getRefresh();
}
@@ -68,6 +68,7 @@ public class WidgetDTO {
public String service;
public String period;
public String yAxisDecimalPattern;
public String interpolation;
public Boolean legend;
public Boolean forceAsItem;
public Integer row;