[Kst] [kst] [Bug 337574] New: add missing pixel marker (as was in 1.x series)
Daniel Mader
danielstefanmader at googlemail.com
Fri Jul 18 08:29:24 UTC 2014
https://bugs.kde.org/show_bug.cgi?id=337574
Bug ID: 337574
Summary: add missing pixel marker (as was in 1.x series)
Product: kst
Version: 2.0.7
Hardware: unspecified
OS: All
Status: UNCONFIRMED
Severity: wishlist
Priority: NOR
Component: plotting
Assignee: kst at kde.org
Reporter: danielstefanmader at googlemail.com
In the current revisions of KST the smallest plot point marker is missing,
which is necessary for highest resolution plots on a display to prevent
overlapping of data points.
Now, there are only larger points available, i.e. complex markers such as
squares, circles, and characters, but no 'pixel' marker. This was well
available in the 1.x series.
With Python's matplotlib, you'd get this marker style like this.
import matplotlib.pyplot as plt
fig = plt.figure(figsize=(20,20))
ax1 = fig.add_subplot(111)
ax1.grid()
ax1.plot(range(1024), range(1024), ',') # <=== mind the comma!
fig.suptitle('fig title')
ax1.set_title('ax title')
ax1.set_xlabel('xlabel')
ax1.set_ylabel('ylabel')
ax1.set_xlim(left=None, right=None)
ax1.set_ylim(bottom=None, top=None)
ax1.legend(loc='best', numpoints=1)
fig.show()
fig.savefig('test.pdf')
Thank you very much in advance, and please keep up this great piece of work and
software!
--
You are receiving this mail because:
You are the assignee for the bug.
More information about the Kst
mailing list