markers

MarkerStyle()

class matplotlib.markers.MarkerStyle(marker=None, fillstyle=None)

Стиль для маркера, точки

  • marker - строка или список

  • fillstyle - ‘full’ | ‘left’ | ‘right’ | ‘bottom’ | ‘top’ | ‘none’

filled_markers

список известных заполненных маркеров

MarkerStyle.filled_markers
# ('o', 'v', '^', '<', '>', '8', 's', 'p', '*', 'h', 'H', 'D', 'd', 'P', 'X')
fillstyles

список известных заполнитилей

MarkerStyle.fillstyles
# ('full', 'left', 'right', 'bottom', 'top', 'none')
markers

список известных маркеров

MarkerStyle.markers
{
        '.': 'point',
        ',': 'pixel',
        'o': 'circle',
        'v': 'triangle_down',
        '^': 'triangle_up',
        '<': 'triangle_left',
        '>': 'triangle_right',
        '1': 'tri_down',
        '2': 'tri_up',
        '3': 'tri_left',
        '4': 'tri_right',
        '8': 'octagon',
        's': 'square',
        'p': 'pentagon',
        '*': 'star',
        'h': 'hexagon1',
        'H': 'hexagon2',
        '+': 'plus',
        'x': 'x',
        'D': 'diamond',
        'd': 'thin_diamond',
        '|': 'vline',
        '_': 'hline',
        'P': 'plus_filled',
        'X': 'x_filled',
        0: 'tickleft',
        1: 'tickright',
        2: 'tickup',
        3: 'tickdown',
        4: 'caretleft',
        5: 'caretright',
        6: 'caretup',
        7: 'caretdown',
        8: 'caretleftbase',
        9: 'caretrightbase',
        10: 'caretupbase',
        11: 'caretdownbase',
        'None': 'nothing',
        None: 'nothing',
        ' ': 'nothing',
        '': 'nothing'
}
get_alt_path()
get_alt_transform()
get_capstyle()
get_fillstyle()
get_joinstyle()
get_marker()
get_path()
get_snap_threshold()
get_transform()
is_filled()
set_fillstyle(fillstyle)
set_marker(marker)