We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 664f3f5 commit 2f88ab4Copy full SHA for 2f88ab4
template/startup_scripts/0002_data.py
@@ -4,7 +4,7 @@
4
from IPython.core.formatters import BaseFormatter
5
from traitlets.traitlets import Unicode, ObjectName
6
7
-from e2b_charts import graph_figure_to_graph
+from e2b_charts import chart_figure_to_dict
8
9
10
def _figure_repr_e2b_chart_(self: Figure):
@@ -13,7 +13,7 @@ def _figure_repr_e2b_chart_(self: Figure):
13
"""
14
# Get all Axes objects from the Figure
15
try:
16
- return graph_figure_to_graph(self)
+ return chart_figure_to_dict(self)
17
except:
18
return {}
19
0 commit comments