我使用 TeeChart JAVA for Android 创建轮廓。
Series series = Series.createNewSeries(mChart.getChart(), Contour.class, null);
mContour = (Contour) series;
mContour.setAutomaticLevels(true);
mContour.setNumLevels(15);
从蓝色到白色的颜色过渡默认设置为绘制轮廓线。我需要把它从红色变成绿色。因此,最大值为红色,最小值为绿色。
这是默认情况下发生的情况: