| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987 | <!DOCTYPE html><html lang="en"><head>    <meta charset="utf-8">    <meta http-equiv="X-UA-Compatible" content="IE=edge">    <meta name="viewport" content="width=device-width, initial-scale=1.0">    <meta name="description" content="ECharts">    <meta name="author" content="kener.linfeng@gmail.com">    <title>ECharts · Example</title>    <link rel="shortcut icon" href="../asset/ico/favicon.png">    <link href="../asset/css/font-awesome.min.css" rel="stylesheet">    <link href="../asset/css/bootstrap.css" rel="stylesheet">    <link href="../asset/css/carousel.css" rel="stylesheet">    <link href="../asset/css/echartsHome.css" rel="stylesheet">    <!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->    <!--[if lt IE 9]>      <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>      <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>    <![endif]-->    <script src="./www/js/echarts.js"></script>    <script src="../asset/js/codemirror.js"></script>    <script src="../asset/js/javascript.js"></script>    <link href="../asset/css/codemirror.css" rel="stylesheet">    <link href="../asset/css/monokai.css" rel="stylesheet">    <style type="text/css">        .doc-image {            float:left;        }        .doc-image h3 {            text-align:center;            background-color:#eee;        }        #doc-continer {            text-align:center;            margin-top:-10px;            transition: height 1s;            -moz-transition: height 1s; /* Firefox 4 */            -webkit-transition: height 1s; /* Safari and Chrome */            -o-transition: height 1s; /* Opera */            overflow:hidden;        }        #doc-switch {            font-weight:bolder;        }        .CodeMirror {            height: 2270px;        }        .main-graphic {            height: 1800px;            overflow: hidden;            padding : 10px;            margin-bottom: 10px;            border: 1px solid #e3e3e3;            -webkit-border-radius: 4px;               -moz-border-radius: 4px;                    border-radius: 4px;            -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);               -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);                    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);        }        .chart {            height: 300px;            margin-bottom:10px;        }        #sidebar-code .btn-primary {            width:60%;        }        #sidebar-code .btn-info {            width:38%;            float:right;        }    </style></head><body>    <!-- Fixed navbar -->    <div class="navbar navbar-default navbar-fixed-top" role="navigation" id="head"></div>    <div class="container-fluid">        <div id="doc-continer" class="doc-open" style="margin-top:20px;">            <a href='#' onclick="docSwitch()" id="doc-switch">- 文档图示</a>            <div class="row-fluid">                <div class='doc-image col-md-4'>                    <h3><a href="../doc.html#Title" target="_blank">title(标题)</a></h3>                    <p><img src="../asset/img/doc/title.png" title="" alt="标题"/></p>                </div>                <div class='doc-image col-md-4'>                    <h3><a href="../doc.html#Toolbox" target="_blank">toolbox(工具箱)</a></h3>                    <p><img src="../asset/img/doc/toolbox.png" title="" alt="工具箱"/></P>                </div>                <div class='doc-image col-md-4'>                    <h3><a href="../doc.html#Tooltip" target="_blank">tooltip(提示)</a></h3>                    <td><img src="../asset/img/doc/tooltip2.jpg" title="" alt="提示"/></td>                </div>            </div>            <div class="row-fluid">                <div class='doc-image col-md-6'>                    <h3><a href="../doc.html#Legend" target="_blank">legend(图例)</a></h3>                    <p><img src="../asset/img/doc/legend.png" title="" alt="图例"/></p>                </div>                <div class='doc-image col-md-6'>                    <h3><a href="../doc.html#DataZoom" target="_blank">dataZoom(数据区域缩放)</a></h3>                    <p><img src="../asset/img/doc/dataZoom.png" title="" alt="数据区域缩放"/></P>                </div>            </div>            <div class="row-fluid">                <div class='doc-image col-md-4'>                    <h3><a href="../doc.html#DataRange" target="_blank">dataRange(值域)</a></h3>                    <p><img src="../asset/img/doc/dataRange.png" title="" alt="值域"/></P>                </div>                                <div class='doc-image col-md-4'>                    <h3><a href="../doc.html#Grid" target="_blank">grid(绘图网格)</a></h3>                    <p><img src="../asset/img/doc/grid.jpg" title="" alt="绘图网格"/></P>                </div>                <div class='doc-image col-md-4'>                    <h3><a href="../doc.html#Axis" target="_blank">axis(坐标轴)</a></h3>                    <p><img src="../asset/img/doc/axisDetail.png" title="" alt="axisDetail"/></P>                </div>            </div>            <div class="row-fluid">                <div class='doc-image col-md-4'>                    <h3><a href="../example/line.html" target="_blank">line(折线图)</a></h3>                    <p><img src="../asset/img/doc/lineTheme.png" title="" alt="折线图"/></P>                </div>                <div class='doc-image col-md-4'>                    <h3><a href="../example/bar.html" target="_blank">bar(柱形图)</a></h3>                    <p><img src="../asset/img/doc/barTheme.png" title="" alt="柱形图"/></P>                </div>                <div class='doc-image col-md-4'>                    <h3><a href="../example/scatter.html" target="_blank">scatter(散点图)</a></h3>                    <p><img src="../asset/img/doc/scatterTheme.png" title="" alt="散点图"/></P>                </div>            </div>            <div class="row-fluid">                <div class='doc-image col-md-4'>                    <h3><a href="../example/k.html" target="_blank">k(K线图)</a></h3>                    <p><img src="../asset/img/doc/kTheme.png" title="" alt="K线图"/></P>                </div>                <div class='doc-image col-md-4'>                    <h3><a href="../example/pie.html" target="_blank">pie(饼图)</a></h3>                    <p><img src="../asset/img/doc/pieTheme.png" title="" alt="饼图"/></P>                </div>                <div class='doc-image col-md-4'>                    <h3><a href="../example/radar.html" target="_blank">k(雷达图)</a></h3>                    <p><img src="../asset/img/doc/radarTheme.png" title="" alt="雷达图"/></P>                </div>            </div>            <div class="row-fluid">                <div class='doc-image col-md-4'>                    <h3><a href="../example/chord.html" target="_blank">chord(和弦图)</a></h3>                    <p><img src="../asset/img/doc/chordTheme.png" title="" alt="和弦图"/></P>                </div>                <div class='doc-image col-md-4'>                    <h3><a href="../example/force.html" target="_blank">force(力导向布局图)</a></h3>                    <p><img src="../asset/img/doc/forceTheme.png" title="" alt="力导向布局图"/></P>                </div>                <div class='doc-image col-md-4'>                    <h3><a href="../example/map.html" target="_blank">map(地图)</a></h3>                    <p><img src="../asset/img/doc/mapTheme.png" title="" alt="地图"/></P>                </div>            </div>        </div>        <a name='refresh' href="#" style="display:inline-block;padding-top: 50px;"> </a>        <div class="row-fluid example">            <div id="sidebar-code" class="col-md-4">              <div style="margin-bottom:10px">                <button class="btn btn-large btn-primary" type="button" onclick="refresh(true)">刷新</button>                <button class="btn btn-large btn-info" type="button" onclick="saveAsImage()">保存图片</button>              </div>              <div class="well sidebar-nav">                <div class="nav-header"><a href="#" onclick="autoResize()" class="glyphicon glyphicon-resize-full" id ="icon-resize" ></a>option</div>                <textarea id="code" name="code">theme = {    // 全图默认背景    // backgroundColor: 'rgba(0,0,0,0)',        // 默认色板    color: ['#ff7f50','#87cefa','#da70d6','#32cd32','#6495ed',            '#ff69b4','#ba55d3','#cd5c5c','#ffa500','#40e0d0',            '#1e90ff','#ff6347','#7b68ee','#00fa9a','#ffd700',            '#6699FF','#ff6666','#3cb371','#b8860b','#30e0e0'],    // 图表标题    title: {        x: 'left',                 // 水平安放位置,默认为左对齐,可选为:                                   // 'center' ¦ 'left' ¦ 'right'                                   // ¦ {number}(x坐标,单位px)        y: 'top',                  // 垂直安放位置,默认为全图顶端,可选为:                                   // 'top' ¦ 'bottom' ¦ 'center'                                   // ¦ {number}(y坐标,单位px)        //textAlign: null          // 水平对齐方式,默认根据x设置自动调整        backgroundColor: 'rgba(0,0,0,0)',        borderColor: '#ccc',       // 标题边框颜色        borderWidth: 0,            // 标题边框线宽,单位px,默认为0(无边框)        padding: 5,                // 标题内边距,单位px,默认各方向内边距为5,                                   // 接受数组分别设定上右下左边距,同css        itemGap: 10,               // 主副标题纵向间隔,单位px,默认为10,        textStyle: {            fontSize: 18,            fontWeight: 'bolder',            color: '#333'          // 主标题文字颜色        },        subtextStyle: {            color: '#aaa'          // 副标题文字颜色        }    },        // 图例    legend: {        orient: 'horizontal',      // 布局方式,默认为水平布局,可选为:                                   // 'horizontal' ¦ 'vertical'        x: 'center',               // 水平安放位置,默认为全图居中,可选为:                                   // 'center' ¦ 'left' ¦ 'right'                                   // ¦ {number}(x坐标,单位px)        y: 'top',                  // 垂直安放位置,默认为全图顶端,可选为:                                   // 'top' ¦ 'bottom' ¦ 'center'                                   // ¦ {number}(y坐标,单位px)        backgroundColor: 'rgba(0,0,0,0)',        borderColor: '#ccc',       // 图例边框颜色        borderWidth: 0,            // 图例边框线宽,单位px,默认为0(无边框)        padding: 5,                // 图例内边距,单位px,默认各方向内边距为5,                                   // 接受数组分别设定上右下左边距,同css        itemGap: 10,               // 各个item之间的间隔,单位px,默认为10,                                   // 横向布局时为水平间隔,纵向布局时为纵向间隔        itemWidth: 20,             // 图例图形宽度        itemHeight: 14,            // 图例图形高度        textStyle: {            color: '#333'          // 图例文字颜色        }    },        // 值域    dataRange: {        orient: 'vertical',        // 布局方式,默认为垂直布局,可选为:                                   // 'horizontal' ¦ 'vertical'        x: 'left',                 // 水平安放位置,默认为全图左对齐,可选为:                                   // 'center' ¦ 'left' ¦ 'right'                                   // ¦ {number}(x坐标,单位px)        y: 'bottom',               // 垂直安放位置,默认为全图底部,可选为:                                   // 'top' ¦ 'bottom' ¦ 'center'                                   // ¦ {number}(y坐标,单位px)        backgroundColor: 'rgba(0,0,0,0)',        borderColor: '#ccc',       // 值域边框颜色        borderWidth: 0,            // 值域边框线宽,单位px,默认为0(无边框)        padding: 5,                // 值域内边距,单位px,默认各方向内边距为5,                                   // 接受数组分别设定上右下左边距,同css        itemGap: 10,               // 各个item之间的间隔,单位px,默认为10,                                   // 横向布局时为水平间隔,纵向布局时为纵向间隔        itemWidth: 20,             // 值域图形宽度,线性渐变水平布局宽度为该值 * 10        itemHeight: 14,            // 值域图形高度,线性渐变垂直布局高度为该值 * 10        splitNumber: 5,            // 分割段数,默认为5,为0时为线性渐变        color:['#1e90ff','#f0ffff'],//颜色         //text:['高','低'],         // 文本,默认为数值文本        textStyle: {            color: '#333'          // 值域文字颜色        }    },    toolbox: {        orient: 'horizontal',      // 布局方式,默认为水平布局,可选为:                                   // 'horizontal' ¦ 'vertical'        x: 'right',                // 水平安放位置,默认为全图右对齐,可选为:                                   // 'center' ¦ 'left' ¦ 'right'                                   // ¦ {number}(x坐标,单位px)        y: 'top',                  // 垂直安放位置,默认为全图顶端,可选为:                                   // 'top' ¦ 'bottom' ¦ 'center'                                   // ¦ {number}(y坐标,单位px)        color : ['#1e90ff','#22bb22','#4b0082','#d2691e'],        backgroundColor: 'rgba(0,0,0,0)', // 工具箱背景颜色        borderColor: '#ccc',       // 工具箱边框颜色        borderWidth: 0,            // 工具箱边框线宽,单位px,默认为0(无边框)        padding: 5,                // 工具箱内边距,单位px,默认各方向内边距为5,                                   // 接受数组分别设定上右下左边距,同css        itemGap: 10,               // 各个item之间的间隔,单位px,默认为10,                                   // 横向布局时为水平间隔,纵向布局时为纵向间隔        itemSize: 16,              // 工具箱图形宽度        featureImageIcon : {},     // 自定义图片icon        featureTitle : {            mark : '辅助线开关',            markUndo : '删除辅助线',            markClear : '清空辅助线',            dataZoom : '区域缩放',            dataZoomReset : '区域缩放后退',            dataView : '数据视图',            lineChart : '折线图切换',            barChart : '柱形图切换',            restore : '还原',            saveAsImage : '保存为图片'        }    },    // 提示框    tooltip: {        trigger: 'item',           // 触发类型,默认数据触发,见下图,可选为:'item' ¦ 'axis'        showDelay: 20,             // 显示延迟,添加显示延迟可以避免频繁切换,单位ms        hideDelay: 100,            // 隐藏延迟,单位ms        transitionDuration : 0.4,  // 动画变换时间,单位s        backgroundColor: 'rgba(0,0,0,0.7)',     // 提示背景颜色,默认为透明度为0.7的黑色        borderColor: '#333',       // 提示边框颜色        borderRadius: 4,           // 提示边框圆角,单位px,默认为4        borderWidth: 0,            // 提示边框线宽,单位px,默认为0(无边框)        padding: 5,                // 提示内边距,单位px,默认各方向内边距为5,                                   // 接受数组分别设定上右下左边距,同css        axisPointer : {            // 坐标轴指示器,坐标轴触发有效            type : 'line',         // 默认为直线,可选为:'line' | 'shadow'            lineStyle : {          // 直线指示器样式设置                color: '#48b',                width: 2,                type: 'solid'            },            shadowStyle : {                       // 阴影指示器样式设置                width: 'auto',                   // 阴影大小                color: 'rgba(150,150,150,0.3)'  // 阴影颜色            }        },        textStyle: {            color: '#fff'        }    },    // 区域缩放控制器    dataZoom: {        orient: 'horizontal',      // 布局方式,默认为水平布局,可选为:                                   // 'horizontal' ¦ 'vertical'        // x: {number},            // 水平安放位置,默认为根据grid参数适配,可选为:                                   // {number}(x坐标,单位px)        // y: {number},            // 垂直安放位置,默认为根据grid参数适配,可选为:                                   // {number}(y坐标,单位px)        // width: {number},        // 指定宽度,横向布局时默认为根据grid参数适配        // height: {number},       // 指定高度,纵向布局时默认为根据grid参数适配        backgroundColor: 'rgba(0,0,0,0)',       // 背景颜色        dataBackgroundColor: '#eee',            // 数据背景颜色        fillerColor: 'rgba(144,197,237,0.2)',   // 填充颜色        handleColor: 'rgba(70,130,180,0.8)'     // 手柄颜色    },    // 网格    grid: {        x: 80,        y: 60,        x2: 80,        y2: 60,        // width: {totalWidth} - x - x2,        // height: {totalHeight} - y - y2,        backgroundColor: 'rgba(0,0,0,0)',        borderWidth: 1,        borderColor: '#ccc'    },    // 类目轴    categoryAxis: {        position: 'bottom',    // 位置        nameLocation: 'end',   // 坐标轴名字位置,支持'start' | 'end'        boundaryGap: true,     // 类目起始和结束两端空白策略        axisLine: {            // 坐标轴线            show: true,        // 默认显示,属性show控制显示与否            lineStyle: {       // 属性lineStyle控制线条样式                color: '#48b',                width: 2,                type: 'solid'            }        },        axisTick: {            // 坐标轴小标记            show: true,       // 属性show控制显示与否,默认不显示            interval: 'auto',            // onGap: null,            inside : false,    // 控制小标记是否在grid里             length :5,         // 属性length控制线长            lineStyle: {       // 属性lineStyle控制线条样式                color: '#333',                width: 1            }        },        axisLabel: {           // 坐标轴文本标签,详见axis.axisLabel            show: true,            interval: 'auto',            rotate: 0,            margin: 8,            // formatter: null,            textStyle: {       // 其余属性默认使用全局文本样式,详见TEXTSTYLE                color: '#333'            }        },        splitLine: {           // 分隔线            show: true,        // 默认显示,属性show控制显示与否            // onGap: null,            lineStyle: {       // 属性lineStyle(详见lineStyle)控制线条样式                color: ['#ccc'],                width: 1,                type: 'solid'            }        },        splitArea: {           // 分隔区域            show: false,       // 默认不显示,属性show控制显示与否            // onGap: null,            areaStyle: {       // 属性areaStyle(详见areaStyle)控制区域样式                color: ['rgba(250,250,250,0.3)','rgba(200,200,200,0.3)']            }        }    },    // 数值型坐标轴默认参数    valueAxis: {        position: 'left',      // 位置        nameLocation: 'end',   // 坐标轴名字位置,支持'start' | 'end'        nameTextStyle: {},     // 坐标轴文字样式,默认取全局样式        boundaryGap: [0, 0],   // 数值起始和结束两端空白策略        splitNumber: 5,        // 分割段数,默认为5        axisLine: {            // 坐标轴线            show: true,        // 默认显示,属性show控制显示与否            lineStyle: {       // 属性lineStyle控制线条样式                color: '#48b',                width: 2,                type: 'solid'            }        },        axisTick: {            // 坐标轴小标记            show: false,       // 属性show控制显示与否,默认不显示            inside : false,    // 控制小标记是否在grid里             length :5,         // 属性length控制线长            lineStyle: {       // 属性lineStyle控制线条样式                color: '#333',                width: 1            }        },        axisLabel: {           // 坐标轴文本标签,详见axis.axisLabel            show: true,            rotate: 0,            margin: 8,            // formatter: null,            textStyle: {       // 其余属性默认使用全局文本样式,详见TEXTSTYLE                color: '#333'            }        },        splitLine: {           // 分隔线            show: true,        // 默认显示,属性show控制显示与否            lineStyle: {       // 属性lineStyle(详见lineStyle)控制线条样式                color: ['#ccc'],                width: 1,                type: 'solid'            }        },        splitArea: {           // 分隔区域            show: false,       // 默认不显示,属性show控制显示与否            areaStyle: {       // 属性areaStyle(详见areaStyle)控制区域样式                color: ['rgba(250,250,250,0.3)','rgba(200,200,200,0.3)']            }        }    },    polar : {        center : ['50%', '50%'],    // 默认全局居中        radius : '75%',        startAngle : 90,        splitNumber : 5,        name : {            show: true,            textStyle: {       // 其余属性默认使用全局文本样式,详见TEXTSTYLE                color: '#333'            }        },        axisLine: {            // 坐标轴线            show: true,        // 默认显示,属性show控制显示与否            lineStyle: {       // 属性lineStyle控制线条样式                color: '#ccc',                width: 1,                type: 'solid'            }        },        axisLabel: {           // 坐标轴文本标签,详见axis.axisLabel            show: false,            textStyle: {       // 其余属性默认使用全局文本样式,详见TEXTSTYLE                color: '#333'            }        },        splitArea : {            show : true,            areaStyle : {                color: ['rgba(250,250,250,0.3)','rgba(200,200,200,0.3)']            }        },        splitLine : {            show : true,            lineStyle : {                width : 1,                color : '#ccc'            }        }    },    // 柱形图默认参数    bar: {        barMinHeight: 0,          // 最小高度改为0        // barWidth: null,        // 默认自适应        barGap: '30%',            // 柱间距离,默认为柱形宽度的30%,可设固定值        barCategoryGap : '20%',   // 类目间柱形距离,默认为类目间距的20%,可设固定值        itemStyle: {            normal: {                // color: '各异',                barBorderColor: '#fff',       // 柱条边线                barBorderRadius: 0,           // 柱条边线圆角,单位px,默认为0                barBorderWidth: 1,            // 柱条边线线宽,单位px,默认为1                label: {                    show: false                    // position: 默认自适应,水平布局为'top',垂直布局为'right',可选为                    //           'inside'|'left'|'right'|'top'|'bottom'                    // textStyle: null      // 默认使用全局文本样式,详见TEXTSTYLE                }            },            emphasis: {                // color: '各异',                barBorderColor: 'rgba(0,0,0,0)',   // 柱条边线                barBorderRadius: 0,                // 柱条边线圆角,单位px,默认为0                barBorderWidth: 1,                 // 柱条边线线宽,单位px,默认为1                label: {                    show: false                    // position: 默认自适应,水平布局为'top',垂直布局为'right',可选为                    //           'inside'|'left'|'right'|'top'|'bottom'                    // textStyle: null      // 默认使用全局文本样式,详见TEXTSTYLE                }            }        }    },    // 折线图默认参数    line: {        itemStyle: {            normal: {                // color: 各异,                label: {                    show: false                    // position: 默认自适应,水平布局为'top',垂直布局为'right',可选为                    //           'inside'|'left'|'right'|'top'|'bottom'                    // textStyle: null      // 默认使用全局文本样式,详见TEXTSTYLE                },                lineStyle: {                    width: 2,                    type: 'solid',                    shadowColor : 'rgba(0,0,0,0)', //默认透明                    shadowBlur: 5,                    shadowOffsetX: 3,                    shadowOffsetY: 3                }            },            emphasis: {                // color: 各异,                label: {                    show: false                    // position: 默认自适应,水平布局为'top',垂直布局为'right',可选为                    //           'inside'|'left'|'right'|'top'|'bottom'                    // textStyle: null      // 默认使用全局文本样式,详见TEXTSTYLE                }            }        },        //smooth : false,        //symbol: null,         // 拐点图形类型        symbolSize: 2,          // 拐点图形大小        //symbolRotate : null,  // 拐点图形旋转控制        showAllSymbol: false    // 标志图形默认只有主轴显示(随主轴标签间隔隐藏策略)    },        // K线图默认参数    k: {        // barWidth : null          // 默认自适应        // barMaxWidth : null       // 默认自适应         itemStyle: {            normal: {                color: '#fff',          // 阳线填充颜色                color0: '#00aa11',      // 阴线填充颜色                lineStyle: {                    width: 1,                    color: '#ff3200',   // 阳线边框颜色                    color0: '#00aa11'   // 阴线边框颜色                }            },            emphasis: {                // color: 各异,                // color0: 各异            }        }    },        // 散点图默认参数    scatter: {        //symbol: null,      // 图形类型        symbolSize: 4,       // 图形大小,半宽(半径)参数,当图形为方向或菱形则总宽度为symbolSize * 2        //symbolRotate : null,  // 图形旋转控制        large: false,        // 大规模散点图        largeThreshold: 2000,// 大规模阀值,large为true且数据量>largeThreshold才启用大规模模式        itemStyle: {            normal: {                // color: 各异,                label: {                    show: false                    // position: 默认自适应,水平布局为'top',垂直布局为'right',可选为                    //           'inside'|'left'|'right'|'top'|'bottom'                    // textStyle: null      // 默认使用全局文本样式,详见TEXTSTYLE                }            },            emphasis: {                // color: '各异'                label: {                    show: false                    // position: 默认自适应,水平布局为'top',垂直布局为'right',可选为                    //           'inside'|'left'|'right'|'top'|'bottom'                    // textStyle: null      // 默认使用全局文本样式,详见TEXTSTYLE                }            }        }    },    // 雷达图默认参数    radar : {        itemStyle: {            normal: {                // color: 各异,                label: {                    show: false                },                lineStyle: {                    width: 2,                    type: 'solid'                }            },            emphasis: {                // color: 各异,                label: {                    show: false                }            }        },        //symbol: null,         // 拐点图形类型        symbolSize: 2           // 可计算特性参数,空数据拖拽提示图形大小        //symbolRotate : null,  // 图形旋转控制    },    // 饼图默认参数    pie: {        center : ['50%', '50%'],    // 默认全局居中        radius : [0, '75%'],        clockWise : false,          // 默认逆时针        startAngle: 90,        minAngle: 0,                // 最小角度改为0        selectedOffset: 10,         // 选中是扇区偏移量        itemStyle: {            normal: {                // color: 各异,                borderColor: '#fff',                borderWidth: 1,                label: {                    show: true,                    position: 'outer'                    // textStyle: null      // 默认使用全局文本样式,详见TEXTSTYLE                },                labelLine: {                    show: true,                    length: 20,                    lineStyle: {                        // color: 各异,                        width: 1,                        type: 'solid'                    }                }            },            emphasis: {                // color: 各异,                borderColor: 'rgba(0,0,0,0)',                borderWidth: 1,                label: {                    show: false                    // position: 'outer'                    // textStyle: null      // 默认使用全局文本样式,详见TEXTSTYLE                },                labelLine: {                    show: false,                    length: 20,                    lineStyle: {                        // color: 各异,                        width: 1,                        type: 'solid'                    }                }            }        }    },        map: {        mapType: 'china',   // 各省的mapType暂时都用中文        mapLocation: {            x : 'center',            y : 'center'            // width    // 自适应            // height   // 自适应        },        showLegendSymbol : true,       // 显示图例颜色标识(系列标识的小圆点),存在legend时生效        itemStyle: {            normal: {                // color: 各异,                borderColor: '#fff',                borderWidth: 1,                areaStyle: {                    color: '#ccc'//rgba(135,206,250,0.8)                },                label: {                    show: false,                    textStyle: {                        color: 'rgba(139,69,19,1)'                    }                }            },            emphasis: {                 // 也是选中样式                // color: 各异,                borderColor: 'rgba(0,0,0,0)',                borderWidth: 1,                areaStyle: {                    color: 'rgba(255,215,0,0.8)'                },                label: {                    show: false,                    textStyle: {                        color: 'rgba(139,69,19,1)'                    }                }            }        }    },        force : {        // 数据map到圆的半径的最小值和最大值        minRadius : 10,        maxRadius : 20,        density : 1.0,        attractiveness : 1.0,        // 初始化的随机大小位置        initSize : 300,        // 向心力因子,越大向心力越大        centripetal : 1,        // 冷却因子        coolDown : 0.99,        // 分类里如果有样式会覆盖节点默认样式        itemStyle: {            normal: {                // color: 各异,                label: {                    show: false                    // textStyle: null      // 默认使用全局文本样式,详见TEXTSTYLE                },                nodeStyle : {                    brushType : 'both',                    color : '#f08c2e',                    strokeColor : '#5182ab'                },                linkStyle : {                    strokeColor : '#5182ab'                }            },            emphasis: {                // color: 各异,                label: {                    show: false                    // textStyle: null      // 默认使用全局文本样式,详见TEXTSTYLE                },                nodeStyle : {},                linkStyle : {}            }        }    },    chord : {        radius : ['65%', '75%'],        center : ['50%', '50%'],        padding : 2,        sort : 'none', // can be 'none', 'ascending', 'descending'        sortSub : 'none', // can be 'none', 'ascending', 'descending'        startAngle : 90,        clockWise : false,        showScale : false,        showScaleText : false,        itemStyle : {            normal : {                label : {                    show : true                    // textStyle: null      // 默认使用全局文本样式,详见TEXTSTYLE                },                lineStyle : {                    width : 0,                    color : '#000'                },                chordStyle : {                    lineStyle : {                        width : 1,                        color : '#666'                    }                }            },            emphasis : {                lineStyle : {                    width : 0,                    color : '#000'                },                chordStyle : {                    lineStyle : {                        width : 2,                        color : '#333'                    }                }            }        }    },    island: {        r: 15,        calculateStep: 0.1  // 滚轮可计算步长 0.1 = 10%    },        markPoint : {        symbol: 'pin',         // 标注类型        symbolSize: 10,        // 标注大小,半宽(半径)参数,当图形为方向或菱形则总宽度为symbolSize * 2        //symbolRotate : null, // 标注旋转控制        itemStyle: {            normal: {                // color: 各异,                // borderColor: 各异,     // 标注边线颜色,优先于color                 borderWidth: 2,            // 标注边线线宽,单位px,默认为1                label: {                    show: true,                    position: 'inside' // 可选为'left'|'right'|'top'|'bottom'                    // textStyle: null      // 默认使用全局文本样式,详见TEXTSTYLE                }            },            emphasis: {                // color: 各异                label: {                    show: true                    // position: 'inside'  // 'left'|'right'|'top'|'bottom'                    // textStyle: null     // 默认使用全局文本样式,详见TEXTSTYLE                }            }        }    },        markLine : {        // 标线起始和结束的symbol介绍类型,如果都一样,可以直接传string        symbol: ['circle', 'arrow'],          // 标线起始和结束的symbol大小,半宽(半径)参数,当图形为方向或菱形则总宽度为symbolSize * 2        symbolSize: [2, 4],        // 标线起始和结束的symbol旋转控制        //symbolRotate : null,        itemStyle: {            normal: {                // color: 各异,           // 标线主色,线色,symbol主色                // borderColor: 随color,     // 标线symbol边框颜色,优先于color                 borderWidth: 2,          // 标线symbol边框线宽,单位px,默认为2                label: {                    show: false,                    // 可选为 'start'|'end'|'left'|'right'|'top'|'bottom'                    position: 'inside',                      textStyle: {         // 默认使用全局文本样式,详见TEXTSTYLE                        color: '#333'                    }                },                lineStyle: {                    // color: 随borderColor, // 主色,线色,优先级高于borderColor和color                    // width: 随borderWidth, // 优先于borderWidth                    type: 'solid',                    shadowColor : 'rgba(0,0,0,0)', //默认透明                    shadowBlur: 5,                    shadowOffsetX: 3,                    shadowOffsetY: 3                }            },            emphasis: {                // color: 各异                label: {                    show: false                    // position: 'inside' // 'left'|'right'|'top'|'bottom'                    // textStyle: null    // 默认使用全局文本样式,详见TEXTSTYLE                },                lineStyle : {}            }        }    },    textStyle: {        decoration: 'none',        fontFamily: 'Arial, Verdana, sans-serif',        fontFamily2: '微软雅黑',    // IE8- 字体模糊并且不支持不同字体混排,额外指定一份        fontSize: 12,        fontStyle: 'normal',        fontWeight: 'normal'    },    // 默认标志图形类型列表    symbolList : [      'circle', 'rectangle', 'triangle', 'diamond',      'emptyCircle', 'emptyRectangle', 'emptyTriangle', 'emptyDiamond'    ],    loadingText : 'Loading...',    // 可计算特性配置,孤岛,提示颜色    calculable: false,              // 默认关闭可计算特性    calculableColor: 'rgba(255,165,0,0.6)',       // 拖拽提示边框颜色    calculableHolderColor: '#ccc', // 可计算占位提示颜色    nameConnector: ' & ',    valueConnector: ' : ',    animation: true,    animationThreshold: 2500,       // 动画元素阀值,产生的图形原素超过2500不出动画    addDataAnimation: true,         // 动态数据接口是否开启动画效果    animationDuration: 2000,    animationEasing: 'ExponentialOut'    //BounceOut}                </textarea>            </div><!--/.well -->              <div style="margin-top:10px">                  <button class="btn btn-large btn-primary" type="button" onclick="refresh(true)">刷新</button>                  <button class="btn btn-large btn-info" type="button" onclick="saveAsImage()">保存图片</button>              </div>            </div><!--/div sidebar-code-->                        <div id="graphic" class="col-md-8">                <div class="row-fluid">                    <div class="col-md-12">                        <div md="main" class="chart"></div>                    </div>                </div>                <div class="row-fluid">                    <div class="col-md-6">                        <div md="main" class="chart"></div>                    </div><!--/col-md--->                    <div class="col-md-6">                        <div md="main" class="chart"></div>                    </div><!--/col-md--->                </div>                <div class="row-fluid">                    <div class="col-md-12">                        <div md="main" class="chart"></div>                    </div>                </div>                <div class="row-fluid">                    <div class="col-md-6">                        <div md="main" class="chart"></div>                    </div><!--/col-md--->                    <div class="col-md-6">                        <div md="main" class="chart"></div>                    </div><!--/col-md--->                </div>                <div class="row-fluid">                    <div class="col-md-12">                        <div md="main" class="chart" style="height:600px"></div>                    </div>                </div>                <div class="row-fluid">                    <div class="col-md-6">                        <div md="main" class="chart"></div>                    </div><!--/col-md--->                    <div class="col-md-6">                        <div md="main" class="chart"></div>                    </div><!--/col-md--->                </div>                <div class="row-fluid">                    <div class="col-md-6">                        <div md="main" class="chart"></div>                    </div><!--/col-md--->                    <div class="col-md-6">                        <div md="main" class="chart"></div>                    </div><!--/col-md--->                </div>            </div><!--/col-md--->        </div><!--/row-->                </div><!--/.fluid-container-->    <footer id="footer"></footer>    <!-- Le javascript    ================================================== -->    <!-- Placed at the end of the document so the pages load faster -->    <script src="../asset/js/jquery.min.js"></script>    <script type="text/javascript" src="../asset/js/echartsHome.js"></script>    <script src="../asset/js/bootstrap.min.js"></script>    <script src="../asset/js/echartsThemeDesigner.js"></script></body></html>
 |