ITIC曲线画图区间问题
This commit is contained in:
@@ -25,7 +25,7 @@ public class BusinessDataUtil {
|
|||||||
List<List<Double>> unTolerateData = new ArrayList<>();
|
List<List<Double>> unTolerateData = new ArrayList<>();
|
||||||
for (List<Double> list : originData) {
|
for (List<Double> list : originData) {
|
||||||
//是否超过上限
|
//是否超过上限
|
||||||
if (list.get(0) <= 0.03) {
|
if (list.get(0) <= 0.003) {
|
||||||
int line = 230 - 30000 * list.get(0).intValue();
|
int line = 230 - 30000 * list.get(0).intValue();
|
||||||
if (list.get(1) > line) {
|
if (list.get(1) > line) {
|
||||||
unTolerateData.add(list);
|
unTolerateData.add(list);
|
||||||
|
|||||||
@@ -8805,7 +8805,7 @@ public class ReportServiceImpl implements ReportService {
|
|||||||
for (int i = 0; i < xbardata.size(); i++) {
|
for (int i = 0; i < xbardata.size(); i++) {
|
||||||
OB ob = xbardata.get(i);
|
OB ob = xbardata.get(i);
|
||||||
//是否超过上限
|
//是否超过上限
|
||||||
if (ob.getA() <= 0.03) {
|
if (ob.getA() <= 0.003) {
|
||||||
int line = 230 - 30000 * (int) ob.getA();
|
int line = 230 - 30000 * (int) ob.getA();
|
||||||
if (ob.getB() > line) {
|
if (ob.getB() > line) {
|
||||||
pointno[i][0] = ob.getA();
|
pointno[i][0] = ob.getA();
|
||||||
|
|||||||
Reference in New Issue
Block a user