-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Open
Description
I am trying to reproduce the original python matplotlib functionality of being able to display fixed offsets in x, y, and z values in the chart axes to whole numbers. This question on stackoverflow, very well explains what I intend to do.
I have some representative Python code which does the job for me in matplotlib (Python). The following is the code:
fig = plt.figure()
fig.set_size_inches(10, 10)
ax = fig.add_subplot(projection='3d')
axis_formatter = ScalarFormatter(useOffset=False)
ax.scatter(self.x, self.y, self.z, marker='o')
ax.yaxis.set_major_formatter(axis_formatter)
ax.xaxis.set_major_formatter(axis_formatter)
ax.zaxis.set_major_formatter(axis_formatter)
Are there equivalent methods in matplotlib-cpp to achieve this same functionality?
Metadata
Metadata
Assignees
Labels
No labels