是否可以将自动换行设置为伪造图表中的所有数据标签?
我正在尝试绘制图[0] .data_labels.format.text_frame.word_wrap = False,但data_labels没有格式化属性
答案 0 :(得分:1)
从.c
对象开始。在图或系列的$ cat main.c
/* vim: set noexpandtab tabstop=2: */
#include <stdio.h>
int main() {
puts("Hello World!");
return 0;
}
$ clang -o main.exe main.c # or gcc
$ ./main.exe
Hello World!
$ nm -D /lib/x86_64-linux-gnu/libc-2.27.so | grep -w puts
00000000000809c0 W puts
$ ldd main.exe
linux-vdso.so.1 (0x00007ffe743ba000)
libc.so.6 => /lib/x86_64-linux-gnu/libc.so.6 (0x00007f397ce7b000)
/lib64/ld-linux-x86-64.so.2 (0x00007f397d26c000)
属性上可用。您可能想同时尝试一下,看看自己得到了什么行为:
DataLabels
这可以变得更紧凑,为清楚起见,我将在此处逐步介绍。