-
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Added plotly.subplots.make_subplots for use with v4_subplots future flag. * Added figure.get_subplot() method to retrieve subplot objects * print_grid=False by default in v4_subplots future mode * Allow subplot types to be specified using trace names
- Loading branch information
Showing
6 changed files
with
3,546 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
from __future__ import absolute_import | ||
from _plotly_future_ import ( | ||
renderer_defaults, template_defaults, extract_chart_studio, | ||
remove_deprecations) | ||
remove_deprecations, v4_subplots) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
from __future__ import absolute_import | ||
from _plotly_future_ import _future_flags, _assert_plotly_not_imported | ||
|
||
_assert_plotly_not_imported() | ||
_future_flags.add('v4_subplots') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.