gpt4 book ai didi

html - 向 Google 图表表格中的单元格添加填充或边距

转载 作者:太空狗 更新时间:2023-10-29 14:21:03 26 4
gpt4 key购买 nike

我在表格模式下使用 Google 图表,在表格中我希望内容(文本)与边框有一点距离。我尝试使用 css 来做到这一点,但填充、边距及其与 -left 的变体到目前为止还不起作用。链接到 tableCell 属性(它是 google chart 表格的 cssClassNames 属性的一部分)的 css 正在工作,因为我可以设置边框和背景。但是当我尝试设置填充或边距等时,没有任何变化。那么我需要做些什么来在边框和表格中的内容之间创建一个距离?

这是我正在使用的 Google 图表:https://developers.google.com/chart/interactive/docs/gallery/table

最佳答案

希望对您有所帮助。使用 data.setCell 向行添加数据,如下所示

data.addColumn('string', 'Name');
data.addColumn('number', 'Salary');
data.addColumn('boolean', 'Full Time');
data.addRows(5);
data.setCell(0, 0, 'John',null,{'className':'right'});
data.setCell(0, 1, 10000, '$10,000');
data.setCell(0, 2, true);

这是 working sample.

有关更多与谷歌图表相关的查询,请访问 jqfaq.com

关于html - 向 Google 图表表格中的单元格添加填充或边距,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17487778/

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