在Google Apps脚本中修改嵌入式图表轴

时间:2018-02-20 13:59:14

标签: gsuite

我尝试在gsuite电子表格中修改嵌入式图表垂直轴最小值/最大值范围 - 但是没有找到选项如何在任何地方执行此操作...只是这样:

coded_string = "/bfbKNk="
bytes_val = base64.decodesbytes(coded_string.encode())
bval = "".join("{0:08b}".format(c) for c in bytes_val)
intval = int(bval, 2)
if bytes_val[0] & 0x70 != 0:           # manually takes the two's complement
    intval -= int('1' + '00' * len(bytes_val), 16)
print(intval)

你有什么提示吗?

0 个答案:

没有答案