* @param actions
* the actions to get the summary graph for
* @return the graph to render
*/
public Graph getGraph(final long timestamp, final GraphConfiguration configuration, final String pluginName, final Collection<ResultAction<?>> actions) {
return new Graph(timestamp, configuration.getWidth(), configuration.getHeight()) {
@Override
protected JFreeChart createGraph() {
return createAggregation(configuration, actions, pluginName);
}
};