Bug 337574 - add missing pixel marker (as was in 1.x series)
Summary: add missing pixel marker (as was in 1.x series)
Status: RESOLVED FIXED
Alias: None
Product: kst
Classification: Applications
Component: plotting (show other bugs)
Version: 2.0.7
Platform: unspecified All
: NOR wishlist
Target Milestone: ---
Assignee: kst
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2014-07-18 08:29 UTC by Daniel Mader
Modified: 2014-07-21 15:50 UTC (History)
1 user (show)

See Also:
Latest Commit:
Version Fixed In:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Daniel Mader 2014-07-18 08:29:24 UTC
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!
Comment 1 Nicolas Brisset 2014-07-21 15:50:34 UTC
Fixed in git yesterday - just forgot to link the bug report to the commit.