当前位置: 首页>>代码示例>>Java>>正文


Java XYRangeInfo类代码示例

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


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

示例1: findRangeBounds

import org.jfree.data.xy.XYRangeInfo; //导入依赖的package包/类
/**
 * Finds the bounds of the y-values in the specified dataset, including
 * only those series that are listed in visibleSeriesKeys, and those items
 * whose x-values fall within the specified range.
 *
 * @param dataset  the dataset (<code>null</code> not permitted).
 * @param visibleSeriesKeys  the keys for the visible series
 *     (<code>null</code> not permitted).
 * @param xRange  the x-range (<code>null</code> not permitted).
 * @param includeInterval  include the y-interval (if the dataset has a
 *     y-interval).
 *
 * @return The data bounds.
 * 
 * @since 1.0.13
 */
public static Range findRangeBounds(XYDataset dataset,
        List visibleSeriesKeys, Range xRange, boolean includeInterval) {
    if (dataset == null) {
        throw new IllegalArgumentException("Null 'dataset' argument.");
    }
    Range result = null;
    if (dataset instanceof XYRangeInfo) {
        XYRangeInfo info = (XYRangeInfo) dataset;
        result = info.getRangeBounds(visibleSeriesKeys, xRange,
                includeInterval);
    }
    else {
        result = iterateToFindRangeBounds(dataset, visibleSeriesKeys,
                xRange, includeInterval);
    }
    return result;
}
 
开发者ID:lulab,项目名称:PI,代码行数:34,代码来源:DatasetUtilities.java

示例2: findRangeBounds

import org.jfree.data.xy.XYRangeInfo; //导入依赖的package包/类
/**
 * Finds the bounds of the y-values in the specified dataset, including
 * only those series that are listed in visibleSeriesKeys, and those items
 * whose x-values fall within the specified range.
 *
 * @param dataset  the dataset (<code>null</code> not permitted).
 * @param visibleSeriesKeys  the keys for the visible series
 *     (<code>null</code> not permitted).
 * @param xRange  the x-range (<code>null</code> not permitted).
 * @param includeInterval  include the y-interval (if the dataset has a
 *     y-interval).
 *
 * @return The data bounds.
 *
 * @since 1.0.13
 */
public static Range findRangeBounds(XYDataset dataset,
        List visibleSeriesKeys, Range xRange, boolean includeInterval) {
    if (dataset == null) {
        throw new IllegalArgumentException("Null 'dataset' argument.");
    }
    Range result = null;
    if (dataset instanceof XYRangeInfo) {
        XYRangeInfo info = (XYRangeInfo) dataset;
        result = info.getRangeBounds(visibleSeriesKeys, xRange,
                includeInterval);
    }
    else {
        result = iterateToFindRangeBounds(dataset, visibleSeriesKeys,
                xRange, includeInterval);
    }
    return result;
}
 
开发者ID:SpoonLabs,项目名称:astor,代码行数:34,代码来源:DatasetUtilities.java

示例3: findRangeBounds

import org.jfree.data.xy.XYRangeInfo; //导入依赖的package包/类
/**
 * Finds the bounds of the y-values in the specified dataset, including
 * only those series that are listed in visibleSeriesKeys, and those items
 * whose x-values fall within the specified range.
 *
 * @param dataset  the dataset (<code>null</code> not permitted).
 * @param visibleSeriesKeys  the keys for the visible series
 *     (<code>null</code> not permitted).
 * @param xRange  the x-range (<code>null</code> not permitted).
 * @param includeInterval  include the y-interval (if the dataset has a
 *     y-interval).
 *
 * @return The data bounds.
 * 
 * @since 1.0.13
 */
public static Range findRangeBounds(XYDataset dataset,
        List visibleSeriesKeys, Range xRange, boolean includeInterval) {
    ParamChecks.nullNotPermitted(dataset, "dataset");
    Range result;
    if (dataset instanceof XYRangeInfo) {
        XYRangeInfo info = (XYRangeInfo) dataset;
        result = info.getRangeBounds(visibleSeriesKeys, xRange,
                includeInterval);
    }
    else {
        result = iterateToFindRangeBounds(dataset, visibleSeriesKeys,
                xRange, includeInterval);
    }
    return result;
}
 
开发者ID:mdzio,项目名称:ccu-historian,代码行数:32,代码来源:DatasetUtilities.java

示例4: findRangeBounds

import org.jfree.data.xy.XYRangeInfo; //导入依赖的package包/类
/**
 * Finds the bounds of the y-values in the specified dataset, including
 * only those series that are listed in visibleSeriesKeys, and those items
 * whose x-values fall within the specified range.
 *
 * @param dataset  the dataset ({@code null} not permitted).
 * @param visibleSeriesKeys  the keys for the visible series
 *     ({@code null} not permitted).
 * @param xRange  the x-range ({@code null} not permitted).
 * @param includeInterval  include the y-interval (if the dataset has a
 *     y-interval).
 *
 * @return The data bounds.
 * 
 * @since 1.0.13
 */
public static Range findRangeBounds(XYDataset dataset,
        List visibleSeriesKeys, Range xRange, boolean includeInterval) {
    Args.nullNotPermitted(dataset, "dataset");
    Range result;
    if (dataset instanceof XYRangeInfo) {
        XYRangeInfo info = (XYRangeInfo) dataset;
        result = info.getRangeBounds(visibleSeriesKeys, xRange,
                includeInterval);
    }
    else {
        result = iterateToFindRangeBounds(dataset, visibleSeriesKeys,
                xRange, includeInterval);
    }
    return result;
}
 
开发者ID:jfree,项目名称:jfreechart,代码行数:32,代码来源:DatasetUtils.java


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