use of com.android.tools.adtui.chart.SunburstChart in project android by JetBrains.
the class SunburstVisualTest method createComponentsList.
@Override
protected List<Animatable> createComponentsList() {
final DataNode data = new DataNode();
data.addDataNode(new DataNode(1, 10));
mSunburst = new SunburstChart(data);
return Collections.singletonList(mSunburst);
}
Aggregations