本文整理汇总了Python中boomslang.Line.xTickLabelPoints方法的典型用法代码示例。如果您正苦于以下问题:Python Line.xTickLabelPoints方法的具体用法?Python Line.xTickLabelPoints怎么用?Python Line.xTickLabelPoints使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类boomslang.Line
的用法示例。
在下文中一共展示了Line.xTickLabelPoints方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: constructImage
# 需要导入模块: from boomslang import Line [as 别名]
# 或者: from boomslang.Line import xTickLabelPoints [as 别名]
def constructImage(self):
plot = Plot()
line = Line()
line.xValues = xrange(100)
line.xTickLabels = ["Whoa this label is really long why is this label so long"]
line.xTickLabelPoints = [42]
line.xTickLabelProperties["rotation"] = 45
line.yValues = [math.sin(x) for x in xrange(100)]
line.yTickLabels = ["Look at this value. Pretty sweet value right?"]
line.yTickLabelPoints = [0.3]
plot.add(line)
plot.setXLabel("Value")
plot.setYLabel("sin(Value)")
plot.save(self.imageName)