@@ -712,13 +712,13 @@ def set_linestyle(self, linestyle):
712
712
================ =================
713
713
linestyle description
714
714
================ =================
715
- '-' solid
716
- '--' dashed
717
- '-.' dash_dot
718
- ':' dotted
719
- 'None' draw nothing
720
- ' ' draw nothing
721
- '' draw nothing
715
+ `` '-'`` solid
716
+ `` '--'`` dashed
717
+ `` '-.'`` dash_dot
718
+ `` ':'`` dotted
719
+ `` 'None'`` draw nothing
720
+ `` ' '`` draw nothing
721
+ ``''`` draw nothing
722
722
================ =================
723
723
724
724
'steps' is equivalent to 'steps-pre' and is maintained for
@@ -729,8 +729,8 @@ def set_linestyle(self, linestyle):
729
729
:meth:`set_drawstyle`
730
730
To set the drawing style (stepping) of the plot.
731
731
732
- ACCEPTS: [ '-' | '--' | '-.' | ':' | 'None' | ' ' | '' ] and
733
- any drawstyle in combination with a linestyle, e.g. 'steps--'.
732
+ ACCEPTS: [ `` '-'`` | `` '--'`` | `` '-.'`` | `` ':'`` | `` 'None'`` | `` ' '`` | ``''`` ]
733
+ and any drawstyle in combination with a linestyle, e.g. `` 'steps--'`` .
734
734
"""
735
735
736
736
for ds in self .drawStyleKeys : # long names are first in the list
@@ -759,28 +759,28 @@ def set_marker(self, marker):
759
759
========== ==========================
760
760
marker description
761
761
========== ==========================
762
- '.' point
763
- ',' pixel
764
- 'o' circle
765
- 'v' triangle_down
766
- '^' triangle_up
767
- '<' triangle_left
768
- '>' triangle_right
769
- '1' tri_down
770
- '2' tri_up
771
- '3' tri_left
772
- '4' tri_right
773
- 's' square
774
- 'p' pentagon
775
- '*' star
776
- 'h' hexagon1
777
- 'H' hexagon2
778
- '+' plus
779
- 'x' x
780
- 'D' diamond
781
- 'd' thin_diamond
782
- '|' vline
783
- '_' hline
762
+ `` '.'`` point
763
+ `` ','`` pixel
764
+ `` 'o'`` circle
765
+ `` 'v'`` triangle_down
766
+ `` '^'`` triangle_up
767
+ `` '<'`` triangle_left
768
+ `` '>'`` triangle_right
769
+ `` '1'`` tri_down
770
+ `` '2'`` tri_up
771
+ `` '3'`` tri_left
772
+ `` '4'`` tri_right
773
+ `` 's'`` square
774
+ `` 'p'`` pentagon
775
+ `` '*'`` star
776
+ `` 'h'`` hexagon1
777
+ `` 'H'`` hexagon2
778
+ `` '+'`` plus
779
+ `` 'x'`` x
780
+ `` 'D'`` diamond
781
+ `` 'd'`` thin_diamond
782
+ `` '|'`` vline
783
+ `` '_'`` hline
784
784
TICKLEFT tickleft
785
785
TICKRIGHT tickright
786
786
TICKUP tickup
@@ -789,19 +789,23 @@ def set_marker(self, marker):
789
789
CARETRIGHT caretright
790
790
CARETUP caretup
791
791
CARETDOWN caretdown
792
- 'None' nothing
793
- ' ' nothing
794
- '' nothing
792
+ `` 'None'`` nothing
793
+ `` ' '`` nothing
794
+ ``''`` nothing
795
795
'$...$' render the string using mathtext
796
796
========== ==========================
797
797
798
798
799
799
800
- ACCEPTS: [ '+' | '*' | ',' | '.' | '1' | '2' | '3' | '4'
801
- | '<' | '>' | 'D' | 'H' | '^' | '_' | 'd'
802
- | 'h' | 'o' | 'p' | 's' | 'v' | 'x' | '|'
800
+ ACCEPTS: [ ``'+'`` | ``'*'`` | ``','`` | ``'.'``
801
+ | ``'1'`` | ``'2'`` | ``'3'`` | ``'4'``
802
+ | ``'<'`` | ``'>'`` | ``'D'`` | ``'H'``
803
+ | ``'^'`` | ``'_'`` | ``'d'`` | ``'h'``
804
+ | ``'o'`` | ``'p'`` | ``'s'`` | ``'v'``
805
+ | ``'x'`` | ``'|'``
803
806
| TICKUP | TICKDOWN | TICKLEFT | TICKRIGHT
804
- | 'None' | ' ' | '' | '$...$']
807
+ | CARETUP | CARETDOWN | CARETLEFT | CARETRIGHT
808
+ | ``'None'`` | ``' '`` | ``''`` | '$...$']
805
809
806
810
"""
807
811
if marker in self ._markers :
0 commit comments