use of org.netxms.client.dashboards.DashboardElement in project netxms by netxms.
the class DashboardControl method addLabel.
/**
* Add label widget to dashboard
*/
public void addLabel() {
DashboardElement e = new DashboardElement(DashboardElement.LABEL, DEFAULT_LABEL_CONFIG);
addElement(e);
}
use of org.netxms.client.dashboards.DashboardElement in project netxms by netxms.
the class DashboardControl method addStatusIndicator.
/**
* Add status indicator widget to dashboard
*/
public void addStatusIndicator() {
DashboardElement e = new DashboardElement(DashboardElement.STATUS_INDICATOR, DEFAULT_OBJECT_REFERENCE_CONFIG);
addElement(e);
}
use of org.netxms.client.dashboards.DashboardElement in project netxms by netxms.
the class DashboardControl method addSyslogMonitor.
public void addSyslogMonitor() {
DashboardElement e = new DashboardElement(DashboardElement.SYSLOG_MONITOR, DEFAULT_OBJECT_REFERENCE_CONFIG);
addElement(e);
}
use of org.netxms.client.dashboards.DashboardElement in project netxms by netxms.
the class DashboardControl method addLineChart.
/**
* Add tube chart widget to dashboard
*/
public void addLineChart() {
DashboardElement e = new DashboardElement(DashboardElement.LINE_CHART, DEFAULT_LINE_CHART_CONFIG);
addElement(e);
}
use of org.netxms.client.dashboards.DashboardElement in project netxms by netxms.
the class DashboardControl method addPieChart.
/**
* Add pie chart widget to dashboard
*/
public void addPieChart() {
DashboardElement e = new DashboardElement(DashboardElement.PIE_CHART, DEFAULT_CHART_CONFIG);
addElement(e);
}
Aggregations