Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -699,6 +699,7 @@ private PageDTO createPageBean(String sitemapName, @Nullable String title, @Null
bean.legend = chartWidget.getLegend();
bean.forceAsItem = chartWidget.getForceAsItem();
bean.yAxisDecimalPattern = chartWidget.getYAxisDecimalPattern();
bean.interpolation = chartWidget.getInterpolation();
if (chartWidget.getRefresh() > 0) {
bean.refresh = chartWidget.getRefresh();
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
Loading