{
webPlot.setURLGenerator(new FormulaCategoryURLGenerator(getRuntime(), getUrlFormula()));
}
final CategoryDataset categoryDataset = webPlot.getDataset();
final int count = categoryDataset.getRowCount();
for (int t = 0; t < count; t++)
{
if (categoryDataset.getRowKey(t) instanceof GridCategoryItem)
{
continue;
}
webPlot.setSeriesOutlineStroke(t, thick);
}
//Set the spiderweb filled (or not)
webPlot.setWebFilled(radarwebfilled);
//Set the size of the datapoints on the axis
webPlot.setHeadPercent(headsize);
//Set the color of the fake datasets (gridlines) to grey
for (int t = 0; t < count; t++)
{
if (categoryDataset.getRowKey(t) instanceof GridCategoryItem)
{
webPlot.setSeriesPaint(t, Color.GRAY);
}
}