gpt4 book ai didi

laravel - 如何在自动列生成上制作垂直列标题?

转载 作者:行者123 更新时间:2023-12-02 17:12:36 32 4
gpt4 key购买 nike

如何在tabulator js库中的自动列生成上制作垂直列标题

我这样做了,而且效果很好:

    //define data
var tabledata = {!!$one!!}

//define table
var table = new Tabulator("#table-1", {
data:tabledata,
autoColumns:true,
layout:"fitColumns",
});

但是,当我添加“headerVertical:true”时,它不会进行任何更改:

    //define data
var tabledata = {!!$one!!}

//define table
var table = new Tabulator("#table-1", {
data:tabledata,
autoColumns:true,
headerVertical:true,
layout:"fitColumns",
});

有人可以帮助我在自动生成列时制作垂直列标题吗?

最佳答案

headerVertical 仅在您按照 documentation 定义列时才有效,你如何使用简单的 css 来实现这一点 https://jsfiddle.net/dota2pro/t0gw9jbp/5/

要旋转 180 度,请使用 CSS rotate

   .tabulator-col-title {
-webkit-writing-mode: vertical-rl;
-ms-writing-mode: tb-rl;
writing-mode: vertical-rl;
text-orientation: mixed;
display: -ms-flexbox;
display: flex;
-ms-flex-align: center;
align-items: center;
-ms-flex-pack: center;
justify-content: center;
padding-top: 20px;
/* if you use rotate change this to paddig-bottom*/
transform: rotate(180deg);
/* incase of rotation*/
}

关于laravel - 如何在自动列生成上制作垂直列标题?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55879934/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com