解决方案 »

  1.   

    JFREECHART 只能实现一个纵轴的折线图
      

  2.   

    看看birt呢,以前用的记不清了。
      

  3.   

    看看这个 Highcharts  Highstock 可以做不
      

  4.   

       用highchart完全能解决这个问题,你直接对y轴赋多个值就ok了!
        yAxis: [{
       //第一条轴  
       // Primary yAxis
          labels: {
                   formatter: function() {
                     return this.value +'°C'; 
          }, 
        style: { color: '#89A54E' } },
         title: { text: 'Temperature', style: { color: '#89A54E' } },
          opposite: true },
        //第二条轴
        { // Secondary yAxis
          gridLineWidth: 0, 
          title: {
                   text: 'Rainfall',
                    style: { color: '#4572A7' } 
                  },
          labels: {
                  formatter: function() { 
                   return this.value +' mm'; 
           }, 
        style: { color: '#4572A7' }
       }
       }];    最后还是建议你看一次highchart的官网 http://www.hcharts.cn/demo/index.php?p=53
      

  5.   

    实在不行就自己通过HTML5或FLASH的Graphics2D来画!