本文整理汇总了Java中com.googlecode.wickedcharts.highcharts.options.series.SimpleSeries类的典型用法代码示例。如果您正苦于以下问题:Java SimpleSeries类的具体用法?Java SimpleSeries怎么用?Java SimpleSeries使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
SimpleSeries类属于com.googlecode.wickedcharts.highcharts.options.series包,在下文中一共展示了SimpleSeries类的14个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。
示例1: generateChart
import com.googlecode.wickedcharts.highcharts.options.series.SimpleSeries; //导入依赖的package包/类
private static Chart generateChart(String[] columnsData, HashMap<String, Double[]> dataMap){
Options options = new Options();
options.setTitle(new Title("Température"));
Axis xAxis = new Axis();
xAxis.setCategories(Arrays.asList(columnsData));
options.setxAxis(xAxis);
PlotLine plotLines = new PlotLine();
plotLines.setValue(0f);
plotLines.setWidth(1);
plotLines.setColor(new HexColor("#999999"));
Axis yAxis = new Axis();
yAxis.setTitle(new Title("Temperature (C)"));
yAxis.setPlotLines(Collections.singletonList(plotLines));
options.setyAxis(yAxis);
Legend legend = new Legend();
legend.setLayout(LegendLayout.VERTICAL);
legend.setAlign(HorizontalAlignment.RIGHT);
legend.setVerticalAlign(VerticalAlignment.TOP);
legend.setX(-10);
legend.setY(100);
legend.setBorderWidth(0);
options.setLegend(legend);
for (HashMap.Entry<String, Double[]> entry : dataMap.entrySet()) {
String key = entry.getKey();
Number[] value = entry.getValue();
Series<Number> series = new SimpleSeries();
series.setName(key);
series.setData(Arrays
.asList(value));
options.addSeries(series);
}
return new Chart("chart", options);
}
开发者ID:haris44,项目名称:Wicket-PDF,代码行数:41,代码来源:HomePage.java
示例2: buildSeries
import com.googlecode.wickedcharts.highcharts.options.series.SimpleSeries; //导入依赖的package包/类
/**
* create data series for diagram
*
* @return data series
*/
public List<SimpleSeries> buildSeries() {
if (this.attributeType.equals(AttributeTypeEnum.STRING)) {
return this.getStringSeries();
} else {
return this.getIntegerValues();
}
}
开发者ID:bptlab,项目名称:Unicorn,代码行数:13,代码来源:ColumnChartOptions.java
示例3: getStringSeries
import com.googlecode.wickedcharts.highcharts.options.series.SimpleSeries; //导入依赖的package包/类
/**
* create data series for string attributes
*
* @return data series
*/
public List<SimpleSeries> getStringSeries() {
final List<SimpleSeries> series = new ArrayList<SimpleSeries>();
// collect values of attribute, each value will be one column
final List<String> distinctValues = EapEvent.findDistinctValuesOfAttributeOfType(this.attributeName, this.eventType);
for (final String value : distinctValues) {
// count number of appearances
final long numberOfAppearances = EapEvent.findNumberOfAppearancesByAttributeValue(this.attributeName, value, this.eventType);
final SimpleSeries serie = new SimpleSeries();
serie.setName(value);
serie.setData(numberOfAppearances);
series.add(serie);
}
return series;
}
开发者ID:bptlab,项目名称:Unicorn,代码行数:20,代码来源:ColumnChartOptions.java
示例4: getChartOptions
import com.googlecode.wickedcharts.highcharts.options.series.SimpleSeries; //导入依赖的package包/类
/**
*
* @param
* @return
*/
private Options getChartOptions() {
Options options = new Options();
options.setChartOptions(new ChartOptions().setType(SeriesType.valueOf(chartType)));
options.setTitle(new Title("Jira Metrics (" + timeInterval + ")"));
options.setxAxis(new Axis().setCategories(UQasarUtil.getJiraMetricNamesAbbreviated()));
options.setyAxis(new Axis().setTitle(new Title("Number of issues")));
List<Number> resItems = new ArrayList<>();
for (JiraMetricMeasurement jiraMeasurement : measurements) {
int count;
try {
if (timeInterval.compareToIgnoreCase("Latest") == 0) {
count = getDataService().countMeasurementsPerProjectByMetricWithLatestDate(project,
jiraMeasurement.getJiraMetric());
}
count = getDataService().countMeasurementsPerProjectByMetricWithinPeriod(project,
jiraMeasurement.getJiraMetric(), timeInterval);
resItems.add(count);
} catch (uQasarException e1) {
e1.printStackTrace();
}
}
options.addSeries(new SimpleSeries().setName("Jira Data").setData(resItems));
return options;
}
开发者ID:U-QASAR,项目名称:u-qasar.platform,代码行数:34,代码来源:WidgetForJIRAView.java
示例5: getChartOptionsDifferently
import com.googlecode.wickedcharts.highcharts.options.series.SimpleSeries; //导入依赖的package包/类
/**
*
* @param
* @return
*/
private Options getChartOptionsDifferently() {
Options options = new Options();
options.setChartOptions(new ChartOptions().setType(SeriesType.valueOf(chartType)));
options.setTitle(new Title("Jira Metrics (" + timeInterval + ")"));
options.setxAxis(new Axis().setCategories(UQasarUtil.getJiraMetricNamesAbbreviated()));
options.setyAxis(new Axis().setTitle(new Title("Number of issues")));
List<Number> resItems = new ArrayList<>();
for (JiraMetricMeasurement jiraMeasurement : measurements) {
if (jiraMeasurement.getJiraMetric().equals(individualMetric)) {
int count;
try {
if (timeInterval.compareToIgnoreCase("Latest") == 0) {
count = getDataService().countMeasurementsPerProjectByMetricWithLatestDate(project,
jiraMeasurement.getJiraMetric());
}
count = getDataService().countMeasurementsPerProjectByMetricWithinPeriod(project,
jiraMeasurement.getJiraMetric(), timeInterval);
resItems.add(count);
} catch (uQasarException e1) {
e1.printStackTrace();
}
}
}
options.addSeries(new SimpleSeries().setName("Jira Data").setData(resItems));
return options;
}
开发者ID:U-QASAR,项目名称:u-qasar.platform,代码行数:37,代码来源:WidgetForJIRAView.java
示例6: historicChart
import com.googlecode.wickedcharts.highcharts.options.series.SimpleSeries; //导入依赖的package包/类
/**
* @return Returns a graphical representation of all the values,
* thresholds and target value by date
*/
private Chart historicChart(){
Options options = new Options();
options.setTitle(new Title(project.getName()));
List<Number> values = new ArrayList<>();
List<Number> upLimit = new ArrayList<>();
List<Number> lowLimit = new ArrayList<>();
List<String> dates = new ArrayList<>();
// Prepare information to be show in the graphic
for (AbstractHistoricValues h : historicalService.getAllHistValuesForProjectAsc(projectId)) {
values.add(h.getValue());
upLimit.add(h.getUpperAcceptanceLimit());
lowLimit.add(h.getLowerAcceptanceLimit());
dates.add(new SimpleDateFormat("dd.MM.yyyy").format(h.getDate()));
}
// X Axis
Axis xAxis = new Axis();
xAxis.setCategories(dates);
options.setxAxis(xAxis);
// Y Axis
Axis yAxis = new Axis();
options.setyAxis(yAxis);
// Adding series to the graphic
options.addSeries(new SimpleSeries().setName("Value").setData(values));
options.addSeries(new SimpleSeries().setName("UpLimit").setData(upLimit));
options.addSeries(new SimpleSeries().setName("LowLimit").setData(lowLimit));
// Legend
Legend legend = new Legend();
legend.setBorderWidth(0);
options.setLegend(legend);
return new Chart("chart",options);
}
开发者ID:U-QASAR,项目名称:u-qasar.platform,代码行数:43,代码来源:HistoricProjectPage.java
示例7: createChartValue
import com.googlecode.wickedcharts.highcharts.options.series.SimpleSeries; //导入依赖的package包/类
private WickedChart createChartValue(String title, List<String> titles, List<Number> values, Number min, Number max) {
Options options = new Options();
options.setChartOptions(new ChartOptions().setType(SeriesType.COLUMN));
options.setTitle(new Title(title));
options.setxAxis(new Axis().setCategories(titles));
options.setyAxis(new Axis().setMin(min).setMax(max));
options.setLegend(
new Legend()
.setLayout(LegendLayout.VERTICAL)
.setBackgroundColor(new HexColor("#FFFFFF"))
.setAlign(HorizontalAlignment.LEFT)
.setVerticalAlign(VerticalAlignment.TOP).setX(100).setY(70).setFloating(Boolean.TRUE).setShadow(Boolean.TRUE));
options.setTooltip(
new Tooltip().setFormatter(new Function().setFunction(" return ''+ this.x +': '+ this.y;")));
options.setPlotOptions(
new PlotOptionsChoice()
.setColumn(new PlotOptions().setPointPadding(0.2f).setBorderWidth(0)));
Series<Number> setData = new SimpleSeries().setName("Value").setData(values);
options.addSeries(setData);
return new WickedChart(options);
}
开发者ID:isisaddons-legacy,项目名称:isis-wicket-wickedcharts,代码行数:29,代码来源:CollectionContentsAsSummaryCharts.java
示例8: getBuildHistoryOptions
import com.googlecode.wickedcharts.highcharts.options.series.SimpleSeries; //导入依赖的package包/类
private Options getBuildHistoryOptions(int limitingNumber){
Options options = new Options();
String title = "Build History";
options.setChartOptions(new ChartOptions().setPlotBackgroundColor(new NullColor()).setPlotBorderWidth(null)
.setHeight(250).setPlotShadow(Boolean.FALSE));
options.setTitle(new Title(title));
options.setSubtitle(new Title(projectName));
options.setPlotOptions(new PlotOptionsChoice().setPie(new PlotOptions().setAllowPointSelect(Boolean.FALSE).setCursor(
Cursor.POINTER)));
Series<Number> history = new SimpleSeries();
history.setType(SeriesType.AREA);
history.setName(title);
// TODO:
// y-axis: load BuildStatus from last100Builds here --> PLEASE OPTIMIZE HERE!
// add the correct labels on the axes (0 = stable, 1=unstable, 2=broken, 3=Unknown
// add the correct BuildNumber on the x-axis (not 0-99, but 634-734)
List<Number> data = new ArrayList<>();
List<String> yAxisLabels = new ArrayList<>();
List<String> xAxisLabels = new ArrayList<>();
int counter = 0;
for (Map.Entry<Number, String> e : sortedLast100Builds) {
if(counter <= limitingNumber){ //make sure the counter is smaller than limiting number
if (e.getValue().toLowerCase().equals("stable")) {
data.add(0);
} else if (e.getValue().toLowerCase().equals("unstable")) {
data.add(1);
} else if (e.getValue().toLowerCase().equals("broken")) {
data.add(2);
} else {
data.add(3);
}
xAxisLabels.add(String.valueOf(e.getKey()));
counter++;
}
}
history.setData(data);
// Numbers on xAxis
Axis xAxis = new Axis();
xAxis.setType(AxisType.DATETIME);
xAxis.setCategories(xAxisLabels);
xAxis.setLabels(new Labels().setVerticalAlign(VerticalAlignment.BOTTOM)
.setStyle(new CssStyle().setProperty("font-size", "10px").setProperty("font-family", "Verdana, sans-serif")));
options.setxAxis(xAxis);
// Labels as String on yAxis
yAxisLabels.add("stable");
yAxisLabels.add("unstable");
yAxisLabels.add("broken");
yAxisLabels.add("out-of-scope");
Axis yAxis = new Axis();
yAxis.setType(AxisType.DATETIME);
yAxis.setCategories(yAxisLabels);
yAxis.setLabels(new Labels().setVerticalAlign(VerticalAlignment.BOTTOM)
.setStyle(new CssStyle().setProperty("font-size", "10px").setProperty("font-family", "Verdana, sans-serif")));
options.setyAxis(yAxis);
options.addSeries(history);
return options;
}
开发者ID:U-QASAR,项目名称:u-qasar.platform,代码行数:67,代码来源:JenkinsWidgetView.java
示例9: historicChart
import com.googlecode.wickedcharts.highcharts.options.series.SimpleSeries; //导入依赖的package包/类
/**
* @return Returns a graphical representation of all the values,
* thresholds and target value by date
*/
private Chart historicChart(){
Options options = new Options();
options.setTitle(new Title(baseIndicator.getName()));
List<Number> values = new ArrayList<>();
List<Number> target = new ArrayList<>();
List<Number> upLimit = new ArrayList<>();
List<Number> lowLimit = new ArrayList<>();
List<String> dates = new ArrayList<>();
// Prepare information to be show in the graphic
for (AbstractHistoricValues h : historicalService.getAllHistValuesForBaseIndAsc(baseIndicatorId)) {
values.add(h.getValue());
target.add(h.getTargetValue());
upLimit.add(h.getUpperAcceptanceLimit());
lowLimit.add(h.getLowerAcceptanceLimit());
dates.add(new SimpleDateFormat("dd.MM.yyyy").format(h.getDate()));
}
// X Axis
Axis xAxis = new Axis();
xAxis.setCategories(dates);
options.setxAxis(xAxis);
// Y Axis
Axis yAxis = new Axis();
options.setyAxis(yAxis);
// Adding series to the graphic
options.addSeries(new SimpleSeries().setName("Value").setData(values));
options.addSeries(new SimpleSeries().setName("Target").setData(target));
options.addSeries(new SimpleSeries().setName("UpLimit").setData(upLimit));
options.addSeries(new SimpleSeries().setName("LowLimit").setData(lowLimit));
// Legend
Legend legend = new Legend();
legend.setBorderWidth(0);
options.setLegend(legend);
return new Chart("chart",options);
}
开发者ID:U-QASAR,项目名称:u-qasar.platform,代码行数:46,代码来源:HistoricBaseIndicatorPage.java
示例10: PieWithGradientOptions
import com.googlecode.wickedcharts.highcharts.options.series.SimpleSeries; //导入依赖的package包/类
public PieWithGradientOptions(List<Log> _lista, Date _fechaDesde,
Date _fechaHasta, TipoPlato _tipoPlato) {
SimpleDateFormat formato = new SimpleDateFormat("dd/MM/yy");
setTitle(new Title("Productos - "
+ (_fechaDesde != null ? formato.format(new java.util.Date(
_fechaDesde.getTime())) : "1º Registro")
+ " - "
+ (_fechaHasta != null ? formato.format(new java.util.Date(
_fechaHasta.getTime())) : "Último Registro")));
List<Number> valores = new ArrayList<Number>();
List<String> labels = new ArrayList<String>();
for (Log entry : _lista) {
valores.add(entry.getCantidad());
labels.add(entry.getProducto().getNombre());
}
addSeries(new SimpleSeries()
.setColor(Color.DARK_GRAY.darker())
.setName(_tipoPlato.toString())
.setData(valores)
.setDataLabels(
new DataLabels()
.setEnabled(Boolean.TRUE)
.setColor(new HexColor("#000000"))
.setAlign(HorizontalAlignment.CENTER)
.setX(0)
.setY(0)
.setFormatter(
new Function()
.setFunction(" return this.y;"))
.setStyle(
new CssStyle()
.setProperty("font-size",
"13px")
.setProperty("font-family",
"Verdana, sans-serif"))));
setyAxis(new Axis().setMin(0).setTitle(new Title("Cantidad")));
setLegend(new Legend(Boolean.TRUE));
setxAxis(new Axis().setCategories(labels).setLabels(
new Labels()
.setRotation(-45)
.setAlign(HorizontalAlignment.RIGHT)
.setStyle(
new CssStyle().setProperty("font-size",
"13px").setProperty("font-family",
"Verdana, sans-serif"))));
setChartOptions(new ChartOptions().setType(SeriesType.COLUMN)
.setMarginTop(50).setMarginRight(50).setMarginBottom(100)
.setMarginLeft(80));
}
开发者ID:resto-tesis,项目名称:resto-tesis,代码行数:57,代码来源:Torta.java
示例11: createOptions
import com.googlecode.wickedcharts.highcharts.options.series.SimpleSeries; //导入依赖的package包/类
Options createOptions() {
Options options = new Options();
options.setChartOptions(new ChartOptions().setType(SeriesType.LINE));
options.setTitle(new Title("My very own chart."));
options.setxAxis(new Axis().setCategories(Arrays.asList(new String[] { "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec" })));
options.setyAxis(new Axis().setTitle(new Title("Temperature (C)")));
options.setLegend(new Legend().setLayout(LegendLayout.VERTICAL).setAlign(HorizontalAlignment.RIGHT).setVerticalAlign(VerticalAlignment.TOP).setX(-10).setY(100).setBorderWidth(0));
options.addSeries(new SimpleSeries().setName("Tokyo").setData(Arrays.asList(new Number[] { 7.0, 6.9, 9.5, 14.5, 18.2, 21.5, 25.2, 26.5, 23.3, 18.3, 13.9, 9.6 })));
options.addSeries(new SimpleSeries().setName("New York").setData(Arrays.asList(new Number[] { -0.2, 0.8, 5.7, 11.3, 17.0, 22.0, 24.8, 24.1, 20.1, 14.1, 8.6, 2.5 })));
return options;
}
开发者ID:isisaddons-legacy,项目名称:isis-wicket-wickedcharts,代码行数:19,代码来源:WicketChartSemanticsProviderEncoderDecoderTest.java
示例12: crearGraficoPeriodo
import com.googlecode.wickedcharts.highcharts.options.series.SimpleSeries; //导入依赖的package包/类
/**
* Metodo que devuelve un grafico de WickedCharts
* para representar la consulta de alquileres por periodo.
*
* @param ano
* @param mes
* @param categoria
*
* @return WickedChart
*/
@Named("Consulta Por Periodo")
@MemberOrder(sequence="1")
public WickedChart crearGraficoPeriodo(
@Named("Año") String ano,
@Optional
@Named("Mes") Mes mes,
@Optional
@Named("Categoria") Categoria categoria) {
estadistica(ano, mes, categoria);
Options options = new Options();
options
.setChartOptions(new ChartOptions()
.setType(SeriesType.COLUMN));
options
.setTitle(new Title("ESTADISTICAS"));
options
.setyAxis(new Axis()
.setTitle(new Title("CANTIDAD DE ALQUILERES")));
options
.setLegend(new Legend()
.setLayout(LegendLayout.VERTICAL)
.setAlign(HorizontalAlignment.RIGHT)
.setVerticalAlign(VerticalAlignment.TOP)
.setX(-10)
.setY(100)
.setBorderWidth(0));
List<Estadistica> listaEst = traerEstadisticas();
for(Estadistica h : listaEst) {
if(categoria==null){
options
.addSeries(new SimpleSeries()
.setName(h.getPatente())
.setData(
Arrays
.asList(new Number[] { h.getCantAlq() })));
options
.setxAxis(new Axis()
.setCategories(Arrays
.asList(new String[] {h.getMes() })));
}else{ // (h.getSeleccionCategoria()==true)
options
.addSeries(new SimpleSeries()
.setName(h.getCategoria().getNombre())
.setData(
Arrays
.asList(new Number[] { h.getCantAlq() })));
options
.setxAxis(new Axis()
.setCategories(Arrays
.asList(new String[] {h.getMes() })));
}
}
return new WickedChart(options);
}
开发者ID:rentacarPDF,项目名称:Proyecto,代码行数:72,代码来源:EstadisticaServicio.java
示例13: crearGraficoAnual
import com.googlecode.wickedcharts.highcharts.options.series.SimpleSeries; //导入依赖的package包/类
/**
* Metodo que devuelve un grafico de WickedCharts
* para representar la consulta anual de alquileres.
*
* @param ano
*
* @return WickedChart
*/
@Named("Consulta Anual")
@MemberOrder(sequence="2")
public WickedChart crearGraficoAnual(
@Named("Año") String ano,
@Named("Categoria") Categoria categoria) {
estadisticaAnual(ano,categoria);
Options options = new Options();
options
.setChartOptions(new ChartOptions()
.setType(SeriesType.LINE));
options
.setTitle(new Title("ESTADISTICAS AÑO "+ano));
options
.setyAxis(new Axis()
.setTitle(new Title("CANTIDAD DE ALQUILERES AÑO "+ano)));
options
.setLegend(new Legend()
.setLayout(LegendLayout.VERTICAL)
.setAlign(HorizontalAlignment.RIGHT)
.setVerticalAlign(VerticalAlignment.TOP)
.setX(-10)
.setY(100)
.setBorderWidth(0));
List<Auto> listaAutos=listaAutosCate(categoria);
List<Estadistica> listaEst=null;
if(ano!=null){
for(Auto a : listaAutos) {
listaEst = listaEstadisticaPorAuto(a.getPatente());
options
.addSeries(new SimpleSeries()
.setName(a.getPatente())
.setData(
Arrays
.asList(new Number[] {listaEst.get(0).getCantAlq(),listaEst.get(1).getCantAlq(),listaEst.get(2).getCantAlq(),listaEst.get(3).getCantAlq(),listaEst.get(4).getCantAlq(),listaEst.get(5).getCantAlq(),listaEst.get(6).getCantAlq(),listaEst.get(7).getCantAlq(),listaEst.get(8).getCantAlq(),listaEst.get(9).getCantAlq(),listaEst.get(10).getCantAlq(),listaEst.get(11).getCantAlq()})));
options
.setxAxis(new Axis()
.setCategories(Arrays
.asList(new String[] {"ENERO","FEBRERO","MARZO","ABRIL","MAYO","JUNIO","JULIO","AGOSTO","SEPTIEMBRE","OCTUBRE","NOVIEMBRE","DICIEMBRE"})));
}
}
return new WickedChart(options);
}
开发者ID:rentacarPDF,项目名称:Proyecto,代码行数:61,代码来源:EstadisticaServicio.java
示例14: ColumnChartOptions
import com.googlecode.wickedcharts.highcharts.options.series.SimpleSeries; //导入依赖的package包/类
public ColumnChartOptions(final ChartConfiguration configuration) {
this.eventType = configuration.getEventType();
this.attributeName = configuration.getAttributeName();
this.attributeType = configuration.getAttributeType();
this.rangeSize = configuration.getRangeSize();
this.title = configuration.getTitle();
this.setChartOptions(new ChartOptions().setType(SeriesType.COLUMN));
this.setGlobal(new Global().setUseUTC(Boolean.TRUE));
this.setTitle(new Title(this.title));
this.setxAxis(new Axis().setCategories(this.eventType.getTypeName()).setTitle(new Title(null)));
this.setyAxis(new Axis().setTitle(new Title("Frequency").setAlign(HorizontalAlignment.HIGH)).setLabels(new Labels().setOverflow(Overflow.JUSTIFY)));
this.setTooltip(new Tooltip().setFormatter(new Function("return ''+this.series.name +': '+ this.y;")));
this.setPlotOptions(new PlotOptionsChoice().setBar(new PlotOptions().setDataLabels(new DataLabels().setEnabled(Boolean.TRUE))));
this.setLegend(new Legend().setLayout(LegendLayout.VERTICAL).setAlign(HorizontalAlignment.RIGHT).setVerticalAlign(VerticalAlignment.TOP).setX(-100).setY(100).setFloating(Boolean.TRUE).setBorderWidth(1).setBackgroundColor(new HexColor("#ffffff")).setShadow(Boolean.TRUE));
this.setCredits(new CreditOptions().setEnabled(Boolean.FALSE));
for (final SimpleSeries serie : this.buildSeries()) {
this.addSeries(serie);
}
}
开发者ID:bptlab,项目名称:Unicorn,代码行数:31,代码来源:ColumnChartOptions.java
注:本文中的com.googlecode.wickedcharts.highcharts.options.series.SimpleSeries类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论