Home >Web Front-end >JS Tutorial >Example code for highcharts usage

Example code for highcharts usage

PHP中文网
PHP中文网Original
2017-06-19 17:43:491303browse
xAxis: {
    type: 'category',
    title:null,
    gridLineWidth: 1,
    lineColor: "#50ae93",
    labels: {
        style: {
            fontSize: '10px'},
        formatter: function() {var labelVal = this.value;var reallyVal = labelVal;var lvl = labelVal.length;if(lvl > 8 && lvl <=16){
                reallyVal = labelVal.substr(0,8)+"<br/>"+labelVal.substring(8,lvl);
            }else if(lvl > 16 && lvl <=24){
                reallyVal = labelVal.substr(0,8)+"<br/>"+labelVal.substr(8,8)+"<br/>"+labelVal.substring(16,lvl);
            }else if(lvl > 24){
                reallyVal = labelVal.substr(0,8)+"<br/>"+labelVal.substr(8,8)+"<br/>"+labelVal.substr(16,8)+"<br/>"+labelVal.substring(24,lvl);
            }            return reallyVal;
        }
    },
    categories:[&#39;测试2016到2017学年度测试2016到2017学年度测试2016到2017学年度&#39;,&#39;测试2016到2017学年度测试2016到2017学年度测试2016到2017学年度&#39;,&#39;测试2016到2017学年度测试2016到2017学年度测试2016到2017学年度&#39;]
},


The above is the detailed content of Example code for highcharts usage. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Previous article:pms前端结构Next article:一个简单的小动画效果