All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.sf.jasperreports.charts.JRCategorySeries Maven / Gradle / Ivy

There is a newer version: 6.21.2
Show newest version
/*
 * JasperReports - Free Java Reporting Library.
 * Copyright (C) 2001 - 2019 TIBCO Software Inc. All rights reserved.
 * http://www.jaspersoft.com
 *
 * Unless you have purchased a commercial license agreement from Jaspersoft,
 * the following license terms apply:
 *
 * This program is part of JasperReports.
 *
 * JasperReports is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * JasperReports is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 * GNU Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with JasperReports. If not, see .
 */
package net.sf.jasperreports.charts;

import net.sf.jasperreports.engine.JRCloneable;
import net.sf.jasperreports.engine.JRExpression;
import net.sf.jasperreports.engine.JRHyperlink;


/**
 * Represents the series for any Category dataset.
 * 
 * @author Teodor Danciu ([email protected])
 */
public interface JRCategorySeries extends JRCloneable
{
	
	/**
	 * @return the expression of the series name. The value of this expression can be any 
	 * java.lang.Comparable object. 
	 * 
* Note that this expression may return different values with each iteration, which in turn * will result in the dataset having multiple category series, even though a single * <categorySeries> tag was used inside <categoryDataset>. However, this * expression usually returns a java.lang.String constant, and there are several * <categorySeries> tags that introduce multiple category series in the dataset. */ public JRExpression getSeriesExpression(); /** * @return the expression of the name of the category for each value inside the series * specified by the series expression. Categories are java.lang.Comparable objects * (not necessarily java.lang.String objects). */ public JRExpression getCategoryExpression(); /** * @return the value expression, a java.lang.Number value for each category in the specified series. */ public JRExpression getValueExpression(); /** * @return the label expression. If present, this expression allows * customization of the item labels in the chart. */ public JRExpression getLabelExpression(); /** * Returns the hyperlink specification for chart items. *

* The hyperlink will be evaluated for every chart item and an image map will be created for the chart. *

* * @return hyperlink specification for chart items */ public JRHyperlink getItemHyperlink(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy