Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion bqplot/interacts.py
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,7 @@ class IndexSelector(OneDSelector):
color: Color or None (default: None)
Color of the line representing the index selector.
line_width: nonnegative integer (default: 0)
Width of the line represetning the index selector.
Width of the line representing the index selector.
"""
selected = Array(None, allow_none=True)\
.tag(sync=True, **array_serialization)
Expand Down
2 changes: 1 addition & 1 deletion bqplot/market_map.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ class MarketMap(DOMWidget):
formats for each of the fields for the tooltip data. Order should match
the order of the tooltip_fields
freeze_tooltip_location: bool (default: False)
if True, freezes the location of the tooltip. If False, tootip will
if True, freezes the location of the tooltip. If False, tooltip will
follow the mouse
show_groups: bool
attribute to determine if the groups should be displayed. If set to
Expand Down
2 changes: 1 addition & 1 deletion bqplot/marks.py
Original file line number Diff line number Diff line change
Expand Up @@ -394,7 +394,7 @@ class Lines(Mark):
line_style = Enum(['solid', 'dashed', 'dotted', 'dash_dotted'],
default_value='solid')\
.tag(sync=True, display_name='Line style')
# TODO: Only Lines have interpolatoin but we can extend for other types of graphs
# TODO: Only Lines have interpolation but we can extend for other types of graphs
interpolation = Enum(['linear', 'basis', 'basis-open',
'basis-closed', 'bundle',
'cardinal', 'cardinal-open',
Expand Down