• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

Java SeriesType类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了Java中com.googlecode.wickedcharts.highcharts.options.SeriesType的典型用法代码示例。如果您正苦于以下问题:Java SeriesType类的具体用法?Java SeriesType怎么用?Java SeriesType使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。



SeriesType类属于com.googlecode.wickedcharts.highcharts.options包,在下文中一共展示了SeriesType类的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。

示例1: prepareEventSeries

import com.googlecode.wickedcharts.highcharts.options.SeriesType; //导入依赖的package包/类
/**
 * prepare data for diagram by calculating percentages of events by
 * eventtype
 *
 * @return data series for pie chart
 */
private Series<Point> prepareEventSeries() {
	final Series<Point> series = new PointSeries().setType(SeriesType.PIE).setName("Event Types Percentage");

	// get overall number of events
	final double numberOfEvents = EapEvent.getNumberOfEvents();

	for (final EapEventType type : EapEventType.findAll()) {
		final double numberOfEventsOfEventType = EapEvent.getNumberOfEventsByEventType(type);
		double percentage = 0;
		if (numberOfEvents > 0) {
			// calculate percentage
			percentage = numberOfEventsOfEventType / numberOfEvents;
		}
		series.addPoint(new Point(type.getTypeName(), Math.round(percentage * 100) / 100.0));
	}
	return series;
}
 
开发者ID:bptlab,项目名称:Unicorn,代码行数:24,代码来源:EventTypePercentageDiagramm.java


示例2: SplatterChartOptions

import com.googlecode.wickedcharts.highcharts.options.SeriesType; //导入依赖的package包/类
public SplatterChartOptions(final ChartConfiguration configuration) throws Exception {
	this.eventType = configuration.getEventType();
	this.attributeName = configuration.getAttributeName();
	this.title = configuration.getTitle();

	final ChartOptions chartOptions = new ChartOptions();
	chartOptions.setType(SeriesType.SCATTER);
	this.setChartOptions(chartOptions);

	this.setTitle(new Title(this.title));

	// X-Achse
	final Axis xAxis = new Axis();
	xAxis.setType(AxisType.DATETIME);

	final DateTimeLabelFormat dateTimeLabelFormat = new DateTimeLabelFormat().setProperty(DateTimeProperties.DAY, "%e.%m.%Y").setProperty(DateTimeProperties.MONTH, "%m/%Y").setProperty(DateTimeProperties.YEAR, "%Y");

	xAxis.setDateTimeLabelFormats(dateTimeLabelFormat);

	this.setxAxis(xAxis);

	// Y-Achse
	final Axis yAxis = new Axis();
	yAxis.setTitle(new Title(this.attributeName));
	yAxis.setType(AxisType.LINEAR);

	this.setyAxis(yAxis);

	// Tooltip
	final Tooltip tooltip = new Tooltip();
	tooltip.setFormatter(new Function("return '<b>'+ this.series.name +'</b><br/>'+Highcharts.dateFormat('%e.%m.%Y', this.x) +': '+ this.y ;"));
	this.setTooltip(tooltip);

	final CustomCoordinatesSeries<String, Number> series = new CustomCoordinatesSeries<String, Number>();
	series.setColor(new RgbaColor(119, 152, 191, 0.5f));
	series.setName(this.eventType.getTypeName());
	series.setData(this.getSeriesData());
	this.addSeries(series);

}
 
开发者ID:bptlab,项目名称:Unicorn,代码行数:41,代码来源:SplatterChartOptions.java


示例3: getTrafficLightOptions

import com.googlecode.wickedcharts.highcharts.options.SeriesType; //导入依赖的package包/类
private Options getTrafficLightOptions(){
	Options options = new Options();
	if(lastBuildSuccess != null){
	    HexColor color = getTrafficLightColor(lastBuildSuccess.getValue());
	
   		options.setChartOptions(new ChartOptions()
   	        .setPlotBackgroundColor(new NullColor())
   	        .setPlotBorderWidth(null)
   	        .setHeight(250)
   	        .setPlotShadow(Boolean.FALSE));
   		options.setTitle(new Title("Latest Build Status"));
   		options.setSubtitle(new Title(projectName));
   		
   		options.setPlotOptions(new PlotOptionsChoice()
   	        .setPie(new PlotOptions()
   	            .setAllowPointSelect(Boolean.FALSE)
   	            .setBorderWidth(0) // to make it look like a "traffic light"
   	            .setCursor(Cursor.POINTER)));
    
   		options.addSeries(new PointSeries()
   	        .setType(SeriesType.PIE)
   	        .addPoint(new Point(lastBuildSuccess.getValue(), 100).setColor(color)));
	}
	return options;
}
 
开发者ID:U-QASAR,项目名称:u-qasar.platform,代码行数:26,代码来源:JenkinsWidgetView.java


示例4: addDrilldownFunction

import com.googlecode.wickedcharts.highcharts.options.SeriesType; //导入依赖的package包/类
/**
 * Adds a {@link DrilldownFunction} to the {@link PlotOptions} of the given
 * {@link Options}.
 * 
 * @param options
 *          the {@link Options} to add a {@link DrilldownFunction} to
 */
private void addDrilldownFunction(Options options, OptionsProcessorContext context) {
  SeriesType chartType = options.getChartOptions().getType();
  if (options.getPlotOptions() == null) {
    options.setPlotOptions(new PlotOptionsChoice());
  }
  if (options.getPlotOptions().getPlotOptions(chartType) == null) {
    options.getPlotOptions().setPlotOptions(new PlotOptions(), chartType);
  }
  if (options.getPlotOptions().getPlotOptions(chartType).getPoint() == null) {
    options.getPlotOptions().getPlotOptions(chartType).setPoint(new PointOptions());
  }
  if (options.getPlotOptions().getPlotOptions(chartType).getPoint().getEvents() == null) {
    options.getPlotOptions().getPlotOptions(chartType).getPoint().setEvents(new Events());
  }
  options.getPlotOptions().getPlotOptions(chartType).getPoint().getEvents()
      .setClick(new DrilldownFunction(getDrilldownArrayName(component)));
}
 
开发者ID:PkayJava,项目名称:pluggable,代码行数:25,代码来源:DrilldownProcessor.java


示例5: getChartOptions

import com.googlecode.wickedcharts.highcharts.options.SeriesType; //导入依赖的package包/类
/**
 * 
 * @param 
 * @return
 */
public Options getChartOptions(List<SonarMetricMeasurement> metrics ){			
		
		String group;
		if (settings.get("metric") == null) {
			group = "Code Lines related";
		} else {
			group = settings.get("metric");
		}
		
		// get latest
		List<SonarMetricMeasurement> latestMetrics = getLatestMetricDataSet(metrics);
		List<SonarMetricMeasurement> metricGroup = getMetricsForGroup(group, latestMetrics);
	
		Options options = new Options();
		ChartOptions chartOptions =  new ChartOptions();
		SeriesType seriesType = SeriesType.COLUMN; 
		chartOptions.setType(seriesType);    
		Title chartTitle = new Title(title + " of " + group + " Metrics");
		options.setTitle(chartTitle);

		for(SonarMetricMeasurement metric: metricGroup){				
			PointSeries series = new PointSeries();	
			series.setType(seriesType);
			series.addPoint(new Point(metric.getSonarMetric(), new Double(metric.getValue())));
			series.setName(metric.getSonarMetric());
			options.addSeries(series);
		}
		options.setChartOptions(chartOptions);	
		
		return options;
}
 
开发者ID:U-QASAR,项目名称:u-qasar.platform,代码行数:37,代码来源:SonarQualityWidget.java


示例6: getChartOptionsDifferently

import com.googlecode.wickedcharts.highcharts.options.SeriesType; //导入依赖的package包/类
public Options getChartOptionsDifferently(List<SonarMetricMeasurement> metrics,String individualMetric) {

        String group;
        if (settings.get("metric") == null) {
            group = "Code Lines related";
        } else {
            group = settings.get("metric");
        }

        // get latest
        //List<SonarMetricMeasurement> latestMetrics = getLatestMetricDataSet(metrics);
       // List<SonarMetricMeasurement> metricGroup = getMetricsForGroup(group, latestMetrics);

        Options options = new Options();
        ChartOptions chartOptions = new ChartOptions();
        SeriesType seriesType = SeriesType.COLUMN;
        chartOptions.setType(seriesType);
        Title chartTitle = new Title(title + " of " + group + " Metrics");
        options.setTitle(chartTitle);

        for (SonarMetricMeasurement metric : metrics) {
            
            if(metric.getSonarMetric().compareToIgnoreCase(individualMetric) == 0){
            PointSeries series = new PointSeries();
            series.setType(seriesType);
            series.addPoint(new Point(metric.getSonarMetric(), new Double(metric.getValue())));
            series.setName(metric.getSonarMetric());
            options.addSeries(series);
            }
        }
        options.setChartOptions(chartOptions);

        return options;
    }
 
开发者ID:U-QASAR,项目名称:u-qasar.platform,代码行数:35,代码来源:SonarQualityWidget.java


示例7: getChartOptions

import com.googlecode.wickedcharts.highcharts.options.SeriesType; //导入依赖的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


示例8: getChartOptionsDifferently

import com.googlecode.wickedcharts.highcharts.options.SeriesType; //导入依赖的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


示例9: createChartValue

import com.googlecode.wickedcharts.highcharts.options.SeriesType; //导入依赖的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


示例10: getChartOptions

import com.googlecode.wickedcharts.highcharts.options.SeriesType; //导入依赖的package包/类
protected static final Options getChartOptions(final PersonProvider provider) {
    Options opts = new Options();
    opts.setTitle(new Title("Account data"));
    opts.setSubtitle(new Title("Amounts at given dates"));
    opts.setChartOptions(new ChartOptions()
            .setType(SeriesType.SPLINE));
    Axis xAxis = new Axis();
    xAxis.setType(AxisType.DATETIME);

    DateTimeLabelFormat dateTimeLabelFormat = new DateTimeLabelFormat()
            .setProperty(DateTimeLabelFormat.DateTimeProperties.MONTH, "%e. %b")
            .setProperty(DateTimeLabelFormat.DateTimeProperties.YEAR, "%b");
    xAxis.setDateTimeLabelFormats(dateTimeLabelFormat);
    opts.setxAxis(xAxis);

    Iterator<? extends Person> personIterator = provider.iterator(0, 0);
    while (personIterator.hasNext()) {
        Person person = personIterator.next();
        List<Statement> statements = person.getStatements();
        List<Coordinate<String, Double>> values = new ArrayList(statements.size());
        for (Statement stat: statements) {
            SimpleDateFormat sdf = new SimpleDateFormat("'Date.UTC(1970, 'MM', 'DD')'");
            String datestring = sdf.format(stat.getDate());
            values.add(new Coordinate<String, Double>(datestring, stat.getAmount()));
        }
        Collections.sort(values, COORD_COMPARE);
        Series series = new Series<Double>() { };
        series.setData(values);
        series.setName(person.getName());
        opts.addSeries(series);
    }
    return opts;
}
 
开发者ID:tkruse,项目名称:wickapp2,代码行数:34,代码来源:HomePage.java


示例11: GraficoTortaClientes

import com.googlecode.wickedcharts.highcharts.options.SeriesType; //导入依赖的package包/类
public GraficoTortaClientes(Map<Cliente, AtomicInteger> a){
		setChartOptions(new ChartOptions()
        .setPlotBackgroundColor(new NullColor())
        .setPlotBorderWidth(null)
        .setPlotShadow(Boolean.FALSE));
    
    setTitle(new Title("Grafico Tarjetas por Cliente"));
  //*********************************************************************************
    PercentageFormatter formatter = new PercentageFormatter();
    setTooltip(
            new Tooltip()
                .setFormatter(
                        formatter)
                .       setPercentageDecimals(1));
//*********************************************************************************
    setPlotOptions(new PlotOptionsChoice()
        .setPie(new PlotOptions()
        .setAllowPointSelect(Boolean.TRUE)
        .setCursor(Cursor.POINTER)
        .setDataLabels(new DataLabels()
        .setEnabled(Boolean.TRUE)
        .setColor(new HexColor("#000000"))
        .setConnectorColor(new HexColor("#000000"))
        .setFormatter(formatter))));
  //*********************************************************************************
    Series<Point> series = new PointSeries()
        .setType(SeriesType.PIE);
    series.setTooltip(
            new Tooltip().setFormatter(new Function().setFunction(" return ''+ Pepe +': '+ Juan;")));
  //*********************************************************************************
    int i=0;
    for (Map.Entry<Cliente, AtomicInteger> entry : a.entrySet()) {
        series
        .addPoint(
        		//*********************************************************************************
                new Point(entry.getKey().getNombre(), entry.getValue().get()).setColor(
                        new RadialGradient()
                            .setCx(0.5)
                            .setCy(0.3)
                            .setR(0.7)
                                .addStop(0, new HighchartsColor(i))
                                .addStop(1, new HighchartsColor(i).brighten(-0.3f))));
        		//*********************************************************************************
        i++;
    }
    addSeries(series);
	}
 
开发者ID:TesisTarjetasMejorar,项目名称:TarjetasISIS,代码行数:48,代码来源:GraficoTortaClientes.java


示例12: GraficoTortaReportadas

import com.googlecode.wickedcharts.highcharts.options.SeriesType; //导入依赖的package包/类
public GraficoTortaReportadas(Map<Boolean, AtomicInteger> a){
	setChartOptions(new ChartOptions()
       .setPlotBackgroundColor(new NullColor())
       .setPlotBorderWidth(null)
       .setPlotShadow(Boolean.FALSE));
   
   setTitle(new Title("Grafico Tarjetas Reportadas"));

   PercentageFormatter formatter = new PercentageFormatter();
   setTooltip(
           new Tooltip()
               .setFormatter(
                       formatter)
               .       setPercentageDecimals(1));

   setPlotOptions(new PlotOptionsChoice()
       .setPie(new PlotOptions()
       .setAllowPointSelect(Boolean.TRUE)
       .setCursor(Cursor.POINTER)
       .setDataLabels(new DataLabels()
       .setEnabled(Boolean.TRUE)
       .setColor(new HexColor("#000000"))
       .setConnectorColor(new HexColor("#000000"))
       .setFormatter(formatter))));

   Series<Point> series = new PointSeries()
       .setType(SeriesType.PIE);
   int i=0;
   for (Map.Entry<Boolean, AtomicInteger> entry : a.entrySet()) {
       series
       .addPoint(
               new Point(nombre(entry.getKey()), entry.getValue().get()).setColor(
                       new RadialGradient()
                           .setCx(0.5)
                           .setCy(0.3)
                           .setR(0.7)
                               .addStop(0, new HighchartsColor(i))
                               .addStop(1, new HighchartsColor(i).brighten(-0.3f))));
       i++;
   }
   addSeries(series);
}
 
开发者ID:TesisTarjetasMejorar,项目名称:TarjetasISIS,代码行数:43,代码来源:GraficoTortaReportadas.java


示例13: GraficoTortaEventos

import com.googlecode.wickedcharts.highcharts.options.SeriesType; //导入依赖的package包/类
public GraficoTortaEventos(Map<Evento, AtomicInteger> a){
	setChartOptions(new ChartOptions()
       .setPlotBackgroundColor(new NullColor())
       .setPlotBorderWidth(null)
       .setPlotShadow(Boolean.FALSE));
   
   setTitle(new Title("Grafico Tarjetas por Eventos"));

   PercentageFormatter formatter = new PercentageFormatter();
   setTooltip(
           new Tooltip()
               .setFormatter(
                       formatter)
               .       setPercentageDecimals(1));

   setPlotOptions(new PlotOptionsChoice()
       .setPie(new PlotOptions()
       .setAllowPointSelect(Boolean.TRUE)
       .setCursor(Cursor.POINTER)
       .setDataLabels(new DataLabels()
       .setEnabled(Boolean.TRUE)
       .setColor(new HexColor("#000000"))
       .setConnectorColor(new HexColor("#000000"))
       .setFormatter(formatter))));

   Series<Point> series = new PointSeries()
       .setType(SeriesType.PIE);
   int i=0;
   for (Map.Entry<Evento, AtomicInteger> entry : a.entrySet()) {
       series
       .addPoint(
               new Point(entry.getKey().getNombre(), entry.getValue().get()).setColor(
                       new RadialGradient()
                           .setCx(0.5)
                           .setCy(0.3)
                           .setR(0.7)
                               .addStop(0, new HighchartsColor(i))
                               .addStop(1, new HighchartsColor(i).brighten(-0.3f))));
       i++;
   }
   addSeries(series);
}
 
开发者ID:TesisTarjetasMejorar,项目名称:TarjetasISIS,代码行数:43,代码来源:GraficoTortaEventos.java


示例14: GraficoTortaBarras

import com.googlecode.wickedcharts.highcharts.options.SeriesType; //导入依赖的package包/类
public GraficoTortaBarras(Map<String, AtomicInteger> a){

	setChartOptions(new ChartOptions()
       .setPlotBackgroundColor(new NullColor())
       .setPlotBorderWidth(null)
       .setPlotShadow(Boolean.FALSE));
   
   setTitle(new Title("Grafico Tarjetas por Cliente"));

   setSubtitle(new Title("Los meses que no aparecen, es por que no se registran cargas de tarjetas"));
   
   
   PercentageFormatter formatter = new PercentageFormatter();
   setTooltip(
           new Tooltip()
               .setFormatter(
                       formatter)
               .       setPercentageDecimals(1));

   setPlotOptions(new PlotOptionsChoice()
       .setPie(new PlotOptions()
       .setAllowPointSelect(Boolean.TRUE)
       .setCursor(Cursor.POINTER)
       .setDataLabels(new DataLabels()
       .setEnabled(Boolean.TRUE)
       .setColor(new HexColor("#000000"))
       .setConnectorColor(new HexColor("#000000"))
       .setFormatter(formatter))));
   //*********************************************************************************
   Series<Point> series = new PointSeries()
       .setType(SeriesType.COLUMN);
   List<String> titles = new ArrayList<String>();
   

   //*********************************************************************************
 
   int i=0;
   for (Map.Entry<String, AtomicInteger> entry : a.entrySet()) {
       series
       .addPoint(
               new Point(entry.getKey(), entry.getValue().get()).setColor(
                       new RadialGradient()
                           .setCx(0.5)
                           .setCy(0.3)
                           .setR(0.7)
                               .addStop(0, new HighchartsColor(i))
                               .addStop(1, new HighchartsColor(i).brighten(-0.3f))));

       titles.add(""+entry.getKey());
       i++;
   }
   
   this.setxAxis(new Axis().setCategories(titles));



   //*********************************************************************************
   addSeries(series);
}
 
开发者ID:TesisTarjetasMejorar,项目名称:TarjetasISIS,代码行数:60,代码来源:GraficoTortaBarras.java


示例15: GraficoTortaResueltos

import com.googlecode.wickedcharts.highcharts.options.SeriesType; //导入依赖的package包/类
public GraficoTortaResueltos(Map<Boolean, AtomicInteger> a){
	setChartOptions(new ChartOptions()
       .setPlotBackgroundColor(new NullColor())
       .setPlotBorderWidth(null)
       .setPlotShadow(Boolean.FALSE));
   
   setTitle(new Title("Grafico Tarjetas Resueltas"));

   PercentageFormatter formatter = new PercentageFormatter();
   setTooltip(
           new Tooltip()
               .setFormatter(
                       formatter)
               .       setPercentageDecimals(1));

   setPlotOptions(new PlotOptionsChoice()
       .setPie(new PlotOptions()
       .setAllowPointSelect(Boolean.TRUE)
       .setCursor(Cursor.POINTER)
       .setDataLabels(new DataLabels()
       .setEnabled(Boolean.TRUE)
       .setColor(new HexColor("#000000"))
       .setConnectorColor(new HexColor("#000000"))
       .setFormatter(formatter))));

   Series<Point> series = new PointSeries()
       .setType(SeriesType.PIE);
   int i=0;
   for (Map.Entry<Boolean, AtomicInteger> entry : a.entrySet()) {
       series
       .addPoint(
               new Point(nombre(entry.getKey()), entry.getValue().get()).setColor(
                       new RadialGradient()
                           .setCx(0.5)
                           .setCy(0.3)
                           .setR(0.7)
                               .addStop(0, new HighchartsColor(i))
                               .addStop(1, new HighchartsColor(i).brighten(-0.3f))));
       i++;
   }
   addSeries(series);
}
 
开发者ID:TesisTarjetasMejorar,项目名称:TarjetasISIS,代码行数:43,代码来源:GraficoTortaResueltos.java


示例16: getOptionsForHistoricalChart

import com.googlecode.wickedcharts.highcharts.options.SeriesType; //导入依赖的package包/类
/**
 * 
 * @return
 */
public Options getOptionsForHistoricalChart() {
	
	TreeNodeService dataService = null;
	Project proj = null;
	try {
		InitialContext ic = new InitialContext();
		dataService = (TreeNodeService) ic.lookup("java:module/TreeNodeService");			
		// Obtain project from the settings
		if (settings.get("project") != null) {
			proj = dataService.getProjectByName(settings.get("project"));
		} else {
			if (dataService != null) {
				proj = dataService.getProjectByName("U-QASAR Platform Development");			
			}				
		}
	} catch (NamingException e) {
		e.printStackTrace();
	}

	
	Options options = new Options();
	ChartOptions chartOptions =  new ChartOptions();

	// Obtain the historic values for the project
	List<HistoricValuesProject> projectHistoricvalues = getHistoricalValues(proj);
	Collections.sort(projectHistoricvalues);
	
	
	SeriesType seriesType = SeriesType.LINE; 
	chartOptions.setType(seriesType);    
	options.setTitle(new Title("Historical Project Quality"));
	
	PointSeries series = new PointSeries();	
	series.setType(seriesType);

	List<String> xAxisLabels = new ArrayList<>();

	for (HistoricValuesProject historicValue : projectHistoricvalues) {
		float value = historicValue.getValue();
		System.out.println("Value: " +value);
		series.addPoint(new Point(proj.getAbbreviatedName(), value));			

		// xAxis Label
		Date date = historicValue.getDate();
		SimpleDateFormat dt1 = new SimpleDateFormat("yyyy-mm-dd hh:mm:ss");
		xAxisLabels.add(dt1.format(date));
	}
	
	// Date on xAxis
	Axis xAxis = new Axis();
	xAxis.setType(AxisType.DATETIME);
	xAxis.setCategories(xAxisLabels);
	xAxis.setLabels(new Labels()
            .setRotation(-60)
            .setAlign(HorizontalAlignment.RIGHT)
            .setStyle(new CssStyle()
                .setProperty("font-size", "9px")
                .setProperty("font-family", "Verdana, sans-serif")));
	options.setxAxis(xAxis);	
	
	options.addyAxis(new Axis()
	.setMin(0)
	.setMax(100));
	
	options.addSeries(series);
	options.setChartOptions(chartOptions);
	
	return options;
}
 
开发者ID:U-QASAR,项目名称:u-qasar.platform,代码行数:74,代码来源:ProjectQualityChartWidget.java


示例17: getBuildHistoryOptions

import com.googlecode.wickedcharts.highcharts.options.SeriesType; //导入依赖的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


示例18: getChartOptions

import com.googlecode.wickedcharts.highcharts.options.SeriesType; //导入依赖的package包/类
/**
 * 
 * @param metrics
 * @return
 */
public Options getChartOptions(List<TestLinkMetricMeasurement> metrics) {

	Options options = new Options();
	ChartOptions chartOptions =  new ChartOptions();
	SeriesType seriesType = SeriesType.PIE; 
	chartOptions.setType(seriesType);    
	Title chartTitle = new Title("Total " + title + ": " + getTotalMetric(metrics));
	options.setTitle(chartTitle);		
	PointSeries series = new PointSeries();	
	series.setType(seriesType);

	// remove TOTAL metric	
	List<TestLinkMetricMeasurement> noTotal = removeTotalMetric(metrics); 
	if (noTotal != null && !noTotal.isEmpty()) {
		int items = 4;
		if (noTotal.size() < items) {
			items = noTotal.size();
		}
			// we obtain the metrics, sorted by timestamp (descending)
			for (int tlm= 0; tlm < items; tlm++){				
				TestLinkMetricMeasurement metric = noTotal.get(tlm);
                   switch (metric.getTestLinkMetric()) {
                       case "TEST_P":
                           series.addPoint(new Point("Tests Passed", new Double(metric.getValue())));
                           break;
                       case "TEST_F":
                           series.addPoint(new Point("Tests Failed", new Double(metric.getValue())));
                           break;
                       case "TEST_B":
                           series.addPoint(new Point("Tests Blocking", new Double(metric.getValue())));
                           break;
                       default:
                           series.addPoint(new Point("Tests Not Executed", new Double(metric.getValue())));
                           break;
                   }
			}
		options.addSeries(series);
		options.setChartOptions(chartOptions);					
	}

	return options;
}
 
开发者ID:U-QASAR,项目名称:u-qasar.platform,代码行数:48,代码来源:TestLinkWidget.java


示例19: getChartOptionsDifferently

import com.googlecode.wickedcharts.highcharts.options.SeriesType; //导入依赖的package包/类
/**
 * 
 * @param metrics
 * @return
 */
public Options getChartOptionsDifferently(List<TestLinkMetricMeasurement> metrics,String individualMetric) {

    Options options = new Options();
    ChartOptions chartOptions =  new ChartOptions();
    SeriesType seriesType = SeriesType.PIE; 
    chartOptions.setType(seriesType);    
    Title chartTitle = new Title("Total " + title + ": " + getTotalMetric(metrics));
    options.setTitle(chartTitle);       
    PointSeries series = new PointSeries(); 
    series.setType(seriesType);

    // remove TOTAL metric  
    List<TestLinkMetricMeasurement> noTotal = removeExtraMetrics(metrics,individualMetric); 
    if (noTotal != null && !noTotal.isEmpty()) {
        int items = 4;
        if (noTotal.size() < items) {
            items = noTotal.size();
        }
            // we obtain the metrics, sorted by timestamp (descending)
            for (int tlm= 0; tlm < items; tlm++){               
                TestLinkMetricMeasurement metric = noTotal.get(tlm);
                switch (metric.getTestLinkMetric()) {
                    case "TEST_P":
                        series.addPoint(new Point("Tests Passed", new Double(metric.getValue())));
                        break;
                    case "TEST_F":
                        series.addPoint(new Point("Tests Failed", new Double(metric.getValue())));
                        break;
                    case "TEST_B":
                        series.addPoint(new Point("Tests Blocking", new Double(metric.getValue())));
                        break;
                    default:
                        series.addPoint(new Point("Tests Not Executed", new Double(metric.getValue())));
                        break;
                }
            }
        options.addSeries(series);
        options.setChartOptions(chartOptions);                  
    }

    return options;
}
 
开发者ID:U-QASAR,项目名称:u-qasar.platform,代码行数:48,代码来源:TestLinkWidget.java


示例20: PieWithGradientOptions

import com.googlecode.wickedcharts.highcharts.options.SeriesType; //导入依赖的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



注:本文中的com.googlecode.wickedcharts.highcharts.options.SeriesType类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
Java MultiTenantConnectionProvider类代码示例发布时间:2022-05-22
下一篇:
Java Operators类代码示例发布时间:2022-05-22
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap