* chart generator.
*
* @return A newly created StatisticsChartGenerator.
*/
protected StatisticsChartGenerator createChartGenerator() {
StatsValueRetriever statsValueRetriever = StatsValueRetriever.DEFAULT_RETRIEVERS.get(getGraphType());
if (statsValueRetriever == null) {
throw new RuntimeException("Unknown GraphType: " + getGraphType() +
". See the StatsValueRetriever class for the list of acceptable types.");
}