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 3b1450e commit d0307cbCopy full SHA for d0307cb
_ext/translation_graph.py
@@ -71,7 +71,7 @@ def run(self):
71
z=values,
72
text=text, # Add text to the heatmap
73
texttemplate="%{text}", # Format the text to display directly
74
- textfont={"size": 10}, # Adjust font size for better readability
+ textfont={"size": 15}, # Adjust font size for better readability
75
xgap=5,
76
ygap=5,
77
customdata=np.array(hoverdata),
@@ -87,13 +87,13 @@ def run(self):
87
"ticktext": ["0-25%", "25-75%", "75-<100%", "100%"], # Labels for categories
88
},
89
colorscale=[
90
- [0.0, "rgb(254, 255, 231)"], # 0-25%
+ [0.0, "rgb(254, 255, 231)"], # 0-25%
91
[0.25, "rgb(254, 255, 231)"],
92
[0.25, "rgb(187, 130, 176)"], # 25-75%
93
[0.75, "rgb(187, 130, 176)"],
94
[0.75, "rgb(129, 192, 170)"], # 75-<100%
95
[0.99, "rgb(129, 192, 170)"],
96
- [1.0, "rgb(78, 112, 100)"], # 100%
+ [1.0, "rgb(78, 112, 100)"], # 100%
97
],
98
)
99
# Create figure
0 commit comments