<%
DataObjectList trendDisplays = pageBean.getMetricTrendDisplays();
int trendC = trendDisplays.getLength();
int trendI = 0;
for (trendI = 0; trendI < trendC; trendI++)
{
DataObject trendDisplay = trendDisplays.getItem(trendI);
final String[] attributes = new String[] {
"chartTitle",
"chartData",
"chartStatisticsDest", "chartThresholdsDesc",
"removeDest",
"promoteDest", "promoteRendered", "promoteNotRendered",
"demoteDest", "demoteRendered", "demoteNotRendered"
};
for (int attrI = 0; attrI < attributes.length; attrI++)
{
request.setAttribute(attributes[attrI]+trendI,
trendDisplay.selectValue(null, attributes[attrI]));
}
}
final int HEIGHT_GIF = 16;
%>
<% for (trendI = 0; trendI < trendC; trendI++) { %>
<% } %>
<%--
== Raw Data
--%>
<%--
== Include Maximum
--%>
<%--
== Include 99.99th Percentile
--%>
<%--
== Include 99.9th Percentile
--%>
<%--
== Include 99th Percentile
--%>
<%--
== Include median
--%>
<%--
== Normalized Data
--%>
<%--
== Statistical Normalization
--%>
<%--
== Range-based normalization
--%>