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 dda1f57 commit f1a1bd2Copy full SHA for f1a1bd2
crystal_toolkit/components/phase_diagram.py
@@ -1,7 +1,6 @@
1
import dash
2
-import dash_table
3
import plotly.graph_objs as go
4
-from dash import dcc, html
+from dash import dash_table, dcc, html
5
from dash.dependencies import Input, Output, State
6
from dash.exceptions import PreventUpdate
7
from pymatgen.analysis.phase_diagram import PDEntry, PDPlotter, PhaseDiagram
@@ -420,7 +419,7 @@ def ternary_plot(plot_data):
420
419
go.Scatterternary(
421
{
422
"mode": "markers",
423
- "a": list_of_a_comp,
+ "a": ..., # list_of_a_comp
424
"b": ...,
425
"c": ...,
426
"text": ...,
0 commit comments