Commit 0610fc1 1 parent 35cbedd commit 0610fc1 Copy full SHA for 0610fc1
File tree 2 files changed +9
-8
lines changed
2 files changed +9
-8
lines changed Original file line number Diff line number Diff line change @@ -736,7 +736,7 @@ def plot_T_S(self,
736
736
plot_label = plot_label ,
737
737
show = show ,
738
738
# Further customization
739
- y_tick_ndecimals = 2 ,
739
+ tick_label_decimals_y = 2 ,
740
740
** further_custom )
741
741
742
742
def plot_p_V (self ,
@@ -760,7 +760,7 @@ def plot_p_V(self,
760
760
plot_label = plot_label ,
761
761
show = show ,
762
762
# Further customization
763
- y_tick_ndecimals = 2 ,
763
+ tick_label_decimals_y = 2 ,
764
764
** further_custom )
765
765
766
766
def plot_H_p (self ,
@@ -784,7 +784,7 @@ def plot_H_p(self,
784
784
plot_label = plot_label ,
785
785
show = show ,
786
786
# Further customization
787
- y_tick_ndecimals = 2 ,
787
+ tick_label_decimals_y = 2 ,
788
788
** further_custom )
789
789
790
790
def plot_T_p (self ,
@@ -808,7 +808,7 @@ def plot_T_p(self,
808
808
plot_label = plot_label ,
809
809
show = show ,
810
810
# Further customization
811
- x_tick_ndecimals = 2 ,
811
+ tick_label_decimals_x = 2 ,
812
812
** further_custom )
813
813
814
814
def plot_cycle_graph (self ,
@@ -1121,7 +1121,7 @@ def plot(self,
1121
1121
}
1122
1122
1123
1123
if colorblind :
1124
- m = markers (hollow = True )
1124
+ m = markers ()
1125
1125
marker = m [self .streams .index (stream )]
1126
1126
subplot_defaults = {** subplot_defaults , ** marker }
1127
1127
Original file line number Diff line number Diff line change @@ -115,12 +115,13 @@ def __getitem__(self, item):
115
115
116
116
m = {k : markers .__dict__ [k ] for k in markers .__dict__ .keys () if (self .hollow and k not in self .incompatible ) or not self .hollow }
117
117
keys = [k for k in m .keys () if not re .match (special , k )]
118
- marker = {'marker ' : m [keys [item ]]}
118
+ marker = {'scatter_marker ' : m [keys [item ]]}
119
119
120
+ # FIXME: hollow markers disappear
120
121
if self .hollow :
121
122
if self .plotter == 'scatter' :
122
- marker ['mfc' ] = 'none'
123
+ marker ['mfc' ] = 'none'
123
124
else :
124
- marker ['facecolors ' ] = 'none'
125
+ marker ['scatter_facecolors ' ] = 'none'
125
126
126
127
return marker
You can’t perform that action at this time.
0 commit comments