作者热门文章
- 使用 Spring Initializr 创建 Spring Boot 应用程序
- 在Spring Boot中配置Cassandra
- 在 Spring Boot 上配置 Tomcat 连接池
- 将Camel消息路由到嵌入WildFly的Artemis上
本文整理了Java中org.jfree.data.xy.YInterval.<init>()
方法的一些代码示例,展示了YInterval.<init>()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。YInterval.<init>()
方法的具体详情如下:
包路径:org.jfree.data.xy.YInterval
类名称:YInterval
方法名:<init>
[英]Creates a new instance of YInterval.
[中]创建YInterval的新实例。
代码示例来源:origin: jfree/jfreechart
/**
* Creates a new instance of {@code YIntervalDataItem}.
*
* @param x the x-value.
* @param y the y-value.
* @param yLow the lower bound of the y-interval.
* @param yHigh the upper bound of the y-interval.
*/
public YIntervalDataItem(double x, double y, double yLow, double yHigh) {
super(new Double(x), new YInterval(y, yLow, yHigh));
}
代码示例来源:origin: org.codehaus.jtstand/jtstand-chart
/**
* Creates a new instance of <code>YIntervalItem</code>.
*
* @param x the x-value.
* @param y the y-value.
* @param yLow the lower bound of the y-interval.
* @param yHigh the upper bound of the y-interval.
*/
public YIntervalDataItem(double x, double y, double yLow, double yHigh) {
super(new Double(x), new YInterval(y, yLow, yHigh));
}
本文整理了Java中org.jfree.data.xy.YInterval.()方法的一些代码示例,展示了YInterval.()的具体用法。这些代码示例主要来源于Github/Stackoverfl
我是一名优秀的程序员,十分优秀!