提问人:Weol Immo 提问时间:12/1/2022 最后编辑:Weol Immo 更新时间:12/2/2022 访问量:78
切换输入数据的行和列
Switch rows and columns of the input data
问:
首先,我是新手......😊
我在文字印刷中使用插件“WPDatatables”来创建 10 个图形,但我在第一个图形中表现不佳。
我正在使用共享电子表格来制作表格;他们我使用创建的表格来创建图形。问题是我必须保留 A 列的过滤器,x 轴上有年份,基本上我需要图形过滤器,其中包含来自图形“TEST II”的排序数据
这是我发现的:
按照下面的例子:
我从这里使用了CSS Highcharts:
**At the end I got this:**
<style>
.wpdt-c .wpDataTablesWrapper table {
display: none !important;
}
</style>
[wpdatatable id=30]
<script type="text/javascript">
jQuery(window).on('load', function(){
if( typeof wpDataChartsCallbacks == 'undefined' ){ wpDataChartsCallbacks = {}; }
wpDataChartsCallbacks[39] = function(obj){
obj.options.chart.switchRowsAndColumns: true
}
}
});
</script>
[wpdatachart id=5]
**Nothing happened so I tried this one:**
<style>
.wpdt-c .wpDataTablesWrapper table {
display: none !important;
}
</style>
[wpdatatable id=30]
<script type="text/javascript">
jQuery(window).on('load', function(){
if( typeof wpDataChartsCallbacks == 'undefined' ){ wpDataChartsCallbacks = {}; }
wpDataChartsCallbacks[39] = function(obj){
obj.options.chart.switchRowsAndColumns: true
}
}
obj.options.chart.update({
data: {
switchRowsAndColumns: !chart.options.data.switchRowsAndColumns
}
});
});
</script>
[wpdatachart id=5]
**And this one;**
<style>
.wpdt-c .wpDataTablesWrapper table {
display: none !important;
}
</style>
[wpdatatable id=30]
<script type="text/javascript">
jQuery(window).on('load', function(){
if( typeof wpDataChartsCallbacks == 'undefined' ){ wpDataChartsCallbacks = {}; }
wpDataChartsCallbacks[39] = function(obj){
obj.options.chart.switchRowsAndColumns: true !chart.options.data.switchRowsAndColumns
}
}
});
</script>
[wpdatachart id=5]
Nothing change, can someone help me please? Or advice how to do it?
Thanks in advance
答: 暂无答案
下一个:获取上一篇文章和下一篇文章的标题
评论