highcharts


        xAxis: {

            type: 'datetime',

            maxZoom: 14 * 24 * 3600000, // fourteen days

            title: {

                text: null

            },

            labels: {

                formatter:function(){

                var time = new Date(this.value);

                    return time.getFullYear()+"-"+(time.getMonth()+1)+"-"+time.getDate();

                }

            }

        },

        yAxis: {

            title: {

                text: 'rate'

            },

            labels: {

                formatter:function(){

                return this.value+'%';

                }

            }

        },


你可能感兴趣的:(highcharts)