markdown PostPogo HighCharts按小时/分钟显示

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了markdown PostPogo HighCharts按小时/分钟显示相关的知识,希望对你有一定的参考价值。

In this code you just need to replace the 'response' variable in the series with your data sets and change the JQ selector.

    $('#site-stats').highcharts({
            chart: {
                zoomType: 'x'
            },
            title: {
                text: 'Posts per Day per Network'
            },
            subtitle: {
                text: document.ontouchstart === undefined ?
                        'Click and drag in the plot area to zoom in' :
                        'Pinch the chart to zoom in'
            },
    		tooltip: {
    		    formatter: function() {
    		        return 'Time: '+ Highcharts.dateFormat('%I:%M %p', this.x) +'<br/>'+this.series.name+": "+this.y;
    		    }
    		},
            xAxis: {
                type: 'datetime',
    			title: {
              			text: 'Time of Day'
          			},
    			dateTimeLabelFormats: {
                      hour: '%I:%M %p',
      					minute: '%I:%M %p',
    				day: '%I:%M %p',
    				month: '%I:%M %p',
    				year: '%I:%M %p'
                  }
            },
            yAxis: {
                title: {
                    text: '# Posts'
                },
    			min:0,
    			type:'int'
            },
    		series:response
    	});

以上是关于markdown PostPogo HighCharts按小时/分钟显示的主要内容,如果未能解决你的问题,请参考以下文章

markdown PostPogo HighCharts按小时/分钟显示

点击量。

Highchart插件下载与安装

画图工具除了echarts我使用highcharts

Markdown温故知新:Markdown面面观

markdown转换为图片