azogue / psychrochart

A Python 3 library to make psychrometric charts and overlay information on them.
MIT License
100 stars 26 forks source link

Region around a connector line #14

Closed dagz214 closed 1 year ago

dagz214 commented 3 years ago

Hi, This is not an issue, but I was unable find the answer it the code. Is it possible the change the formatting, or even to remove the region around a connector line? thanks

image

dagz214 commented 3 years ago

I think I found it in chart.py, Isit the right line of code? Is that something the could be customized without forking? (line 376) self._handlers_annotations.append( self.axes.plot( x_line, y_line, color=list(style["color"][:3]) + [0.15], lw=50, solid_capstyle="round",

azogue commented 1 year ago

Hi @dagz214 👋,

Sorry for the loooong delay in replying 🙏, I had totally forgotten about this library, for years (and had the github notifications muted 🙈)

If you are still interested, with the latest version those markers are disabled by default, and there is a specific parameter outline_marker_width in psychrochart.models.annots.ChartLine to re-enable it with the desired width

I've updated the library to work with recent versions of python and matplotlib (in #30 and #31), and I'll try to maintain it again 🤞

dagz214 commented 1 year ago

Thanks @azogue, I appreciate it.