Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
e5e0ccb
update.
xuang7 Feb 25, 2026
63a92fe
Merge branch 'main' into fix/bubble-chart-boolean-python-conversion
carloea2 Feb 26, 2026
9e747c8
update..
xuang7 Feb 26, 2026
6c2ad57
Merge remote-tracking branch 'origin/fix/bubble-chart-boolean-python-…
xuang7 Feb 26, 2026
4bdba0b
Merge branch 'main' into fix/bubble-chart-boolean-python-conversion
xuang7 Mar 2, 2026
89d65b1
update.
xuang7 Mar 2, 2026
fb94c55
Merge branch 'main' into fix/bubble-chart-boolean-python-conversion
xuang7 Mar 5, 2026
e599bba
Merge branch 'main' into fix/bubble-chart-boolean-python-conversion
xuang7 Mar 5, 2026
830df9b
Merge branch 'main' into fix/bubble-chart-boolean-python-conversion
xuang7 Mar 6, 2026
b639c41
Merge branch 'main' into fix/bubble-chart-boolean-python-conversion
xuang7 Mar 8, 2026
9e44364
Merge branch 'main' into fix/bubble-chart-boolean-python-conversion
xuang7 Mar 13, 2026
3db1dd9
Merge branch 'main' into fix/bubble-chart-boolean-python-conversion
xuang7 Mar 13, 2026
1a3ba59
Merge branch 'main' into fix/bubble-chart-boolean-python-conversion
xuang7 Mar 27, 2026
986f2cf
Merge branch 'main' into fix/bubble-chart-boolean-python-conversion
xuang7 Apr 3, 2026
51e37ec
Merge branch 'main' into fix/bubble-chart-boolean-python-conversion
xuang7 Apr 11, 2026
17cc22a
Merge branch 'main' into fix/bubble-chart-boolean-python-conversion
aglinxinyuan Apr 17, 2026
b07b15e
Merge branch 'main' into fix/bubble-chart-boolean-python-conversion
aglinxinyuan Apr 17, 2026
6e4784d
Merge branch 'main' into fix/bubble-chart-boolean-python-conversion
aglinxinyuan Apr 17, 2026
a89013f
Merge branch 'main' into fix/bubble-chart-boolean-python-conversion
aglinxinyuan Apr 17, 2026
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
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ class BubbleChartOpDesc extends PythonOperatorDescriptor {
def createPlotlyFigure(): PythonTemplateBuilder = {
assert(xValue.nonEmpty && yValue.nonEmpty && zValue.nonEmpty)
pyb"""
| if $enableColor == 'true':
Comment thread
xuang7 marked this conversation as resolved.
| if '$enableColor' == 'true':
| fig = go.Figure(px.scatter(table, x=$xValue, y=$yValue, size=$zValue, size_max=100, color=$colorCategory))
| else:
| fig = go.Figure(px.scatter(table, x=$xValue, y=$yValue, size=$zValue, size_max=100))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ class ContourPlotOpDesc extends PythonOperatorDescriptor {
| y = table[$y].values
| z = table[$z].values
| grid_size = int($gridSize)
| connGaps = True if $connectGaps == 'true' else False
| connGaps = True if '$connectGaps' == 'true' else False
|
| grid_x, grid_y = np.meshgrid(np.linspace(min(x), max(x), grid_size), np.linspace(min(y), max(y), grid_size))
| grid_z = griddata((x, y), z, (grid_x, grid_y), method='cubic')
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ class TernaryPlotOpDesc extends PythonOperatorDescriptor {
/** Returns a Python string that creates the ternary plot figure */
def createPlotlyFigure(): PythonTemplateBuilder = {
pyb"""
| if $colorEnabled == 'true' and $colorDataField != "":
| if '$colorEnabled' == 'true' and $colorDataField != "":
| fig = px.scatter_ternary(table, a=$firstVariable, b=$secondVariable, c=$thirdVariable, color=$colorDataField)
| else:
| fig = px.scatter_ternary(table, a=$firstVariable, b=$secondVariable, c=$thirdVariable)
Expand Down
Loading