Hi all,
is there any way to remove a Column from a DefaultBoxAndWhiskerCategoryDataset?
I'm thinking of sth like the removeColumn() function of the DefaultCategoryDataset..
Thanks in advance
KR
Florian
Removing Categories from DefaultBoxAndWhiskerCategoryDataset
I solved this by implementing a removeCategory() - function in the DefaultBoxAndWhiskerCategoryDataset - Class
KR
Florian
Code: Select all
public void removeCategory(String cat){
this.data.removeColumn(cat);
this.fireDatasetChanged();
}
Florian