本文整理汇总了Java中org.achartengine.chart.BubbleChart类的典型用法代码示例。如果您正苦于以下问题:Java BubbleChart类的具体用法?Java BubbleChart怎么用?Java BubbleChart使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
BubbleChart类属于org.achartengine.chart包,在下文中一共展示了BubbleChart类的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。
示例1: getBubbleChartIntent
import org.achartengine.chart.BubbleChart; //导入依赖的package包/类
public static final Intent getBubbleChartIntent(Context context, XYMultipleSeriesDataset xymultipleseriesdataset, XYMultipleSeriesRenderer xymultipleseriesrenderer, String s)
{
a(xymultipleseriesdataset, xymultipleseriesrenderer);
Intent intent = new Intent(context, org/achartengine/GraphicalActivity);
intent.putExtra("chart", new BubbleChart(xymultipleseriesdataset, xymultipleseriesrenderer));
intent.putExtra("title", s);
return intent;
}
开发者ID:vishnudevk,项目名称:MiBandDecompiled,代码行数:9,代码来源:ChartFactory.java
示例2: getBubbleChartView
import org.achartengine.chart.BubbleChart; //导入依赖的package包/类
public static final GraphicalView getBubbleChartView(Context context, XYMultipleSeriesDataset xymultipleseriesdataset, XYMultipleSeriesRenderer xymultipleseriesrenderer)
{
a(xymultipleseriesdataset, xymultipleseriesrenderer);
return new GraphicalView(context, new BubbleChart(xymultipleseriesdataset, xymultipleseriesrenderer));
}
开发者ID:vishnudevk,项目名称:MiBandDecompiled,代码行数:6,代码来源:ChartFactory.java
示例3: getBubbleChartView
import org.achartengine.chart.BubbleChart; //导入依赖的package包/类
/**
* Creates a bubble chart view.
*
* @param context the context
* @param dataset the multiple series dataset (cannot be null)
* @param renderer the multiple series renderer (cannot be null)
* @return a scatter chart graphical view
* @throws IllegalArgumentException if dataset is null or renderer is null or
* if the dataset and the renderer don't include the same number of
* series
*/
public static final GraphicalView getBubbleChartView(Context context,
XYMultipleSeriesDataset dataset, XYMultipleSeriesRenderer renderer) {
checkParameters(dataset, renderer);
XYChart chart = new BubbleChart(dataset, renderer);
return new GraphicalView(context, chart);
}
开发者ID:sdrausty,项目名称:buildAPKsApps,代码行数:18,代码来源:ChartFactory.java
示例4: getBubbleChartIntent
import org.achartengine.chart.BubbleChart; //导入依赖的package包/类
/**
* Creates a bubble chart intent that can be used to start the graphical view
* activity.
*
* @param context the context
* @param dataset the multiple series dataset (cannot be null)
* @param renderer the multiple series renderer (cannot be null)
* @param activityTitle the graphical chart activity title
* @return a scatter chart intent
* @throws IllegalArgumentException if dataset is null or renderer is null or
* if the dataset and the renderer don't include the same number of
* series
*/
public static final Intent getBubbleChartIntent(Context context, XYMultipleSeriesDataset dataset,
XYMultipleSeriesRenderer renderer, String activityTitle) {
checkParameters(dataset, renderer);
Intent intent = new Intent(context, GraphicalActivity.class);
XYChart chart = new BubbleChart(dataset, renderer);
intent.putExtra(CHART, chart);
intent.putExtra(TITLE, activityTitle);
return intent;
}
开发者ID:sdrausty,项目名称:buildAPKsApps,代码行数:23,代码来源:ChartFactory.java
注:本文中的org.achartengine.chart.BubbleChart类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论