echart 数据视图 样式重写

来源http://blog.csdn.net/u010705091/article/details/75212724

echarts折线图的数据视图样式重写

在echarts.js中,点击折线图的数据试图按钮,会以表格table的形式展示折线图中的数据,但是此时的table格式比较乱。如下图:

所以,为了展示美观需重写table的样式。echart.js的官方文档,是在配置项option中的toolbox属性中的dataview对象中重写optionToContent函数。其中class=”table-bordered table-striped”中的类为bootstrap自有的。如下图:

optionToContent:function(opt) {
      var axisData = opt.xAxis[0].data;
      var series = opt.series;
      var table =‘<table id="test" class="table-bordered table-striped" style="width:100%;text-align:center">‘,
      var table = table + ‘<tbody><tr>‘+ ‘<td>时间</td>‘+ ‘<td>‘ + series[0].name + ‘</td>‘ + ‘<td>‘ + series[1].name + ‘</td>‘ + ‘</tr>‘;
       for (var i = 0, l = axisData.length; i < l; i++) {
           table += ‘<tr>‘ + ‘<td>‘ + axisData[i] + ‘</td>‘ + ‘<td>‘ + series[0].data[i] + ‘</td>‘ + ‘<td>‘ + series[1].data[i] + ‘</td>‘+ ‘</tr>‘;
           }
             table += ‘</tbody>‘;
             return table;
       }

至此,数据试图的table样式已经重写。

dataTable()

首先引入dataTable的样式文件和js文件

    <link rel="stylesheet" type="text/css" href="https://cdn.datatables.net/1.10.15/css/jquery.dataTables.min.css">
    <script type="text/javascript" language="javascript" src="js/datatable/jquery.dataTables.js"></script>

此时的解决方法是在数据试图的table 里添加名为nodeInserted 的动画:

 @keyframes nodeInserted {
            from { clip: rect(1px, auto, auto, auto); }
            to { clip: rect(0px, auto, auto, auto); }
        }

        @-moz-keyframes nodeInserted {
            from { clip: rect(1px, auto, auto, auto); }
            to { clip: rect(0px, auto, auto, auto); }
        }

        @-webkit-keyframes nodeInserted {
            from { clip: rect(1px, auto, auto, auto); }
            to { clip: rect(0px, auto, auto, auto); }
        }

        @-ms-keyframes nodeInserted {
            from { clip: rect(1px, auto, auto, auto); }
            to { clip: rect(0px, auto, auto, auto); }
        }

        @-o-keyframes nodeInserted {
            from { clip: rect(1px, auto, auto, auto); }
            to { clip: rect(0px, auto, auto, auto); }
        }
        .table-data-table {
            animation-duration: 0.001s;
            -o-animation-duration: 0.001s;
            -ms-animation-duration: 0.001s;
            -moz-animation-duration: 0.001s;
            -webkit-animation-duration: 0.001s;
            animation-name: nodeInserted;
            -o-animation-name: nodeInserted;
            -ms-animation-name: nodeInserted;
            -moz-animation-name: nodeInserted;
            -webkit-animation-name: nodeInserted;
        }
         .table-data-table {
            animation-duration: 0.001s;
            -o-animation-duration: 0.001s;
            -ms-animation-duration: 0.001s;
            -moz-animation-duration: 0.001s;
            -webkit-animation-duration: 0.001s;
            animation-name: nodeInserted;
            -o-animation-name: nodeInserted;
            -ms-animation-name: nodeInserted;
            -moz-animation-name: nodeInserted;
            -webkit-animation-name: nodeInserted;
        }

并在页面加载完后监听动画事件,以扑捉到table元素

window.onload = function() {

            var insertListener = function(event){
                        // console.warn("Another node has been inserted! ", event);
                        if (event.animationName == "nodeInserted") {
                            $("#"+event.target.getAttribute("id")).DataTable();
                            console.log(event);
                            console.log($("#"+event.target.getAttribute("id")));
                        }
                    } ;
            document.addEventListener("animationstart", insertListener, false); // standard + firefox
            document.addEventListener("MSAnimationStart", insertListener, false); // IE
            document.addEventListener("webkitAnimationStart", insertListener, false); // Chrome + Safari

        };

整体代码如下:
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <link rel="stylesheet" href="css/bootstrap/bootstrap.min.css">
    <link rel="stylesheet" type="text/css" href="https://cdn.datatables.net/1.10.15/css/jquery.dataTables.min.css">
    <style type="text/css" >
        .echarts-ht-5{
            height: 500px;
            /*background: gray;*/
        }
        /* set up the keyframes */
        @keyframes nodeInserted {
            from { clip: rect(1px, auto, auto, auto); }
            to { clip: rect(0px, auto, auto, auto); }
        }

        @-moz-keyframes nodeInserted {
            from { clip: rect(1px, auto, auto, auto); }
            to { clip: rect(0px, auto, auto, auto); }
        }

        @-webkit-keyframes nodeInserted {
            from { clip: rect(1px, auto, auto, auto); }
            to { clip: rect(0px, auto, auto, auto); }
        }

        @-ms-keyframes nodeInserted {
            from { clip: rect(1px, auto, auto, auto); }
            to { clip: rect(0px, auto, auto, auto); }
        }

        @-o-keyframes nodeInserted {
            from { clip: rect(1px, auto, auto, auto); }
            to { clip: rect(0px, auto, auto, auto); }
        }
        .table-data-table {
            animation-duration: 0.001s;
            -o-animation-duration: 0.001s;
            -ms-animation-duration: 0.001s;
            -moz-animation-duration: 0.001s;
            -webkit-animation-duration: 0.001s;
            animation-name: nodeInserted;
            -o-animation-name: nodeInserted;
            -ms-animation-name: nodeInserted;
            -moz-animation-name: nodeInserted;
            -webkit-animation-name: nodeInserted;
        }
    </style>
</head>
<body>
<h1>别问我静静是谁</h1>
    <div class="container">
        <div class="row" >
            <div class="col-lg-12 echarts-ht-5" id="echarts-line-1">
            </div>

        </div>
        <div class="row">
            <div class="col-lg-12 echarts-ht-5" id="echarts-pie-1">
            </div>

        </div>

    </div>
    <script src="https://cdn.bootcss.com/jquery/1.12.4/jquery.min.js"></script>
    <script type="text/javascript" src="js/bootstrap/bootstrap.min.js"></script>
    <script src="js/echarts/echarts.js"></script>
    <script type="text/javascript" language="javascript" src="js/datatable/jquery.dataTables.js"></script>
    <script type="text/javascript">
        $(document).ready(function(){
            renderLineDemo();
            renderPieDemo();
        });
        window.onload = function() {

            var insertListener = function(event){
                        // console.warn("Another node has been inserted! ", event);
                        if (event.animationName == "nodeInserted") {
                            $("#"+event.target.getAttribute("id")).DataTable();
                            console.log(event);
                            console.log($("#"+event.target.getAttribute("id")));
                        }
                    } ;
            document.addEventListener("animationstart", insertListener, false); // standard + firefox
            document.addEventListener("MSAnimationStart", insertListener, false); // IE
            document.addEventListener("webkitAnimationStart", insertListener, false); // Chrome + Safari

        };
        function renderLineDemo(){
            var echartLineDemo = echarts.init(document.getElementById(‘echarts-line-1‘));
            var option = {
                title: {
                    text: ‘未来一周气温变化‘,
                    subtext: ‘纯属虚构‘
                },
                tooltip: {
                    trigger: ‘axis‘
                },
                legend: {
                    data:[‘最高气温‘,‘最低气温‘]
                },
                toolbox: {
                    show: true,
                    feature: {
                        dataView: {readOnly: true,
                            optionToContent:function(opt) {
                            console.log(11111);
                                var axisData = opt.xAxis[0].data;
                                var series = opt.series;

                                var tableDom = document.createElement("table");
                                tableDom.setAttribute("id","test");
                                tableDom.setAttribute("class","table-data-table");
                                // <table id="test" class="table-bordered table-striped" style="width:100%;text-align:center"
                                var table = ‘<thead><tr>‘
                                    + ‘<td>时间</td>‘
                                    + ‘<td>‘ + series[0].name + ‘</td>‘
                                    + ‘<td>‘ + series[1].name + ‘</td>‘
                                    + ‘</tr></thead><tbody>‘;
                                for (var i = 0, l = axisData.length; i < l; i++) {
                                    table += ‘<tr>‘
                                        + ‘<td>‘ + axisData[i] + ‘</td>‘
                                        + ‘<td>‘ + series[0].data[i] + ‘</td>‘
                                        + ‘<td>‘ + series[1].data[i] + ‘</td>‘
                                        + ‘</tr>‘;
                                }
                                table += ‘</tbody>‘;
                                tableDom.innerHTML = table;
                                return tableDom;
                            }
                        },
                        saveAsImage: {
                            show:true,
                            title:‘保存为图片‘
                        }
                    }
                },
                xAxis:  {
                    type: ‘category‘,
                    boundaryGap: false,
                    data: [‘周一‘,‘周二‘,‘周三‘,‘周四‘,‘周五‘,‘周六‘,‘周日‘]
                },
                yAxis: {
                    type: ‘value‘,
                    axisLabel: {
                        formatter: ‘{value} °C‘
                    }
                },
                series: [
                    {
                        name:‘最高气温‘,
                        type:‘line‘,
                        data:[11, 11, 15, 13, 12, 13, 10],
                        markPoint: {
                            data: [
                                {type: ‘max‘, name: ‘最大值‘},
                                {type: ‘min‘, name: ‘最小值‘}
                            ]
                        },
                        markLine: {
                            data: [
                                {type: ‘average‘, name: ‘平均值‘}
                            ]
                        }
                    },
                    {
                        name:‘最低气温‘,
                        type:‘line‘,
                        data:[1, -2, 2, 5, 3, 2, 0],
                        markPoint: {
                            data: [
                                {name: ‘周最低‘, value: -2, xAxis: 1, yAxis: -1.5}
                            ]
                        },
                        markLine: {
                            data: [
                                {type: ‘average‘, name: ‘平均值‘},
                                [{
                                    symbol: ‘none‘,
                                    x: ‘90%‘,
                                    yAxis: ‘max‘
                                }, {
                                    symbol: ‘circle‘,
                                    label: {
                                        normal: {
                                            position: ‘start‘,
                                            formatter: ‘最大值‘
                                        }
                                    },
                                    type: ‘max‘,
                                    name: ‘最高点‘
                                }]
                            ]
                        }
                    }
                ]
            };
            echartLineDemo.setOption(option);
        }
        function renderPieDemo(){
            var echartsPieDemo = echarts.init(document.getElementById(‘echarts-pie-1‘));
            var option = {
                title : {
                    text: ‘某站点用户访问来源‘,
                    subtext: ‘纯属虚构‘,
                    x:‘center‘
                },
                tooltip : {
                    trigger: ‘item‘,
                    formatter: "{a} <br/>{b} : {c} ({d}%)"
                },
                legend: {
                    orient: ‘vertical‘,
                    left: ‘left‘,
                    data: [‘直接访问‘,‘邮件营销‘,‘联盟广告‘,‘视频广告‘,‘搜索引擎‘]
                },
                series : [
                    {
                        name: ‘访问来源‘,
                        type: ‘pie‘,
                        radius : ‘55%‘,
                        center: [‘50%‘, ‘60%‘],
                        data:[
                            {value:335, name:‘直接访问‘},
                            {value:310, name:‘邮件营销‘},
                            {value:234, name:‘联盟广告‘},
                            {value:135, name:‘视频广告‘},
                            {value:1548, name:‘搜索引擎‘}
                        ],
                        itemStyle: {
                            emphasis: {
                                shadowBlur: 10,
                                shadowOffsetX: 0,
                                shadowColor: ‘rgba(0, 0, 0, 0.5)‘
                            }
                        }
                    }
                ]
            };
            echartsPieDemo.setOption(option);

        }

</script>
</body>
</html>

效果图如下:

之后就可以用dataTable里相应的配置来为table添加不同的功能。

原文地址:https://www.cnblogs.com/hao-1234-1234/p/8304911.html

时间: 2024-10-16 07:37:58

echart 数据视图 样式重写的相关文章

echarts优化数据视图dataView中的样式

在使用echart过程中,toolbox里有个dataView视图模式,里面的数据没有对整,影响展示效果,情形如下:改问题解决方案为,在optionTocontent回调函数中处理,具体代码如下: toolbox:{ show: true, feature: { dataView: { show: true, title: '数据视图', optionToContent: function (opt) { var axisData = opt.xAxis[0].data; var series

WPF数据视图学习

当你绑定集合到ItemsControl,数据视图被安静地在幕后创造.视图位于数据源和绑定控件之间.数据视图是通往数据源的一个窗口.它跟踪当前项目,它支持诸如排序,过滤,和分组特征.这些特征独立于数据对象本身,意味着你能以不同的方式.在窗口的不同部分(或应用的不同部分)绑定相同的数据.例如,你能绑定相同的产品集合到两个不同的列表但是过滤他们显示不同的记录. 视图对象依赖于数据对象的类型.所有的视图派生自CollectionView,但是两个特殊的实现派生自CollectionView:ListCo

tableau desktop(三)--构建数据视图(二)

前段时间忙于工作的事情,好久没有来记录一点东西了,今天利用周末做点记录吧,最近由于工作的原因,也有两三周没有用tableau了.今天继续上一篇构建数据试图(二). 3.7 参考线和参考区间 参考线通常用来标记轴上的某个特定值或区域.例如,当您在分析多种产品的月销售额时,可能需要在平均销售额标记处包含一条参考线,这样可以将每一种产品的业绩与平均值进行比较..或者您可能需要用阴影沿轴标出某一特定区域.最后,您可能需要使用参考线指定某种分布. ableau 不限制添加的参考线条数.使用"添加参考线&q

[Aaronyang] 写给自己的WPF4.5 笔记8[复杂数据处理三步曲,数据视图精讲1/3]

真的好累了 ,笑了.做回自己吧       -------------      Aaronyang技术分享 www.ayjs.net 博文摘要: 详细介绍了WPF中视图的种类和开始学之前的准备工作 视图的 分页视图导航 DEMO1 详细讲解了 视图中xaml的声明方式,以及xaml的排序和分组 DEMO2 实例讲解了DataTable的BindingListCollectionView的类似操作 DEMO3 讲解了LINQ中的过滤 Predicate委托,以及过滤的几种方式 讲解了 视图中后台

SharePoint 2013 Designer系列之数据视图

在SharePoint使用中.数据展示是一块非常重要的部分.非常多时候我们会採用webpart的形式.可是有一些情况,我们不必使用开发,仅需使用Designer就可以,以下让我简介下数据视图的使用. 1.创建一个測试列表,下面为測试列表的字段,例如以下图: 2.插入一些測试数据(纯属捏造,仅供娱乐),例如以下图: 3.创建一个測试页面,例如以下图: 4.在PlaceHolderMain节点里,插入webpartzone,然后插入数据视图,选择我们的測试列表News,例如以下图: 5.切换到设计标

模版与数据视图

模板是sencha touch的基石,先把这句话记着再说-- 没有了模板,就陷入到了html的拼接当中-- 基本模板:Ext.Template 基础模版输出只能遍历store一个个进行输出,太麻烦了 高级模板Ext.XTemplate有更高级的功能,可以用for来自动填充数组中的数据 而数据视图dataview则是将高级模板和store结合起来使用 基本数据视图的使用

SharePoint 2013 Designer系列之数据视图筛选

在SharePoint中,我们经常需要对列表进行简单的筛选,这时,数据视图就有作用了,我们可以定制对于字段的筛选,来进行展示:特别的,筛选不同于搜索,并没有对于附件或者文档的全文检索,如果需要全文检索,可以使用列表的垂直搜索功能. 1.新建一个测试页面,然后右键在高级模式下编辑,如下图: 2.在PlaceHolderMain节点里,加入webpartzone,用来添加数据视图: 3.数据视图选择News列表,如下图: 4.列表视图就选择第一个就可以了,如下图: 5.查看测试页面,如下图: 6.在

css样式重写

//我们经常想修改插件的某一个或几个样式特性,并保留其它的样式.而不是把某个css全部重写一遍. /*原有样式*/.ninew {padding: 0 10px;width: 600px;height: 226px; display: inline-block;vertical-align: top;}/*原有样式*/ /*重写样式*/ .ninew {padding: 0 10px;width:auto !important;height:auto !important;display: in

SharePoint数据视图无法打开

最近在折腾SharePoint,之前列表常用的“数据视图”居然不能打开,提示“没有安装Sharepoit foundation 数据兼容组件”如图: 上网G下.度下有说要删除注册表.要安装office.excel...等等. 注册表中没有发现提及的健值,“删除HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Internet Explorer\ActiveX Compatibility\{65bcbee4-7728-41a0-97be-14e1cae36aae}键值”结