removed radar chart

This commit is contained in:
Jonas Werner 2025-03-23 14:43:30 +01:00
parent f0d1fffec4
commit a84b6f7722

View file

@ -247,15 +247,15 @@ public class TeXUtil {
StringBuilder tex = new StringBuilder();
// 2x2 minipage layout
tex.append("\\begin{minipage}{1\\textwidth}\n")
.append(bubbleChartTeX)
.append("\\end{minipage}\n")
.append("\\begin{minipage}{1\\textwidth}\n")
.append(barChartTeX)
.append("\\end{minipage}\n")
.append("\\begin{minipage}{0.5\\textwidth}\n")
.append("\\begin{minipage}{0.4\\textwidth}\n")
.append(bubbleChartTeX)
.append("\\end{minipage}\n")
.append("\\begin{minipage}{0.3\\textwidth}\n")
.append(radarChartTeX)
.append("\\end{minipage}\n")
.append("\\begin{minipage}{0.5\\textwidth}\n")
.append("\\begin{minipage}{0.3\\textwidth}\n")
.append(sunburstCharTeX)
.append("\\end{minipage}\n");
@ -325,7 +325,7 @@ public class TeXUtil {
public static String generateRadarChartLatex(List<Sentiment> sentimets) {
StringBuilder tex = new StringBuilder();
tex.append("\\begin{tikzpicture}\n" +
/*tex.append("\\begin{tikzpicture}\n" +
" \\coordinate (origin) at (0, 0);\n" +
"\n" +
" % Define the axes (3 axes) with unit length (1)\n" +
@ -348,7 +348,8 @@ public class TeXUtil {
}
tex.append("\\draw [fill=blue!20, opacity=.7] (point-1) -- (point-2) -- (point-3) -- cycle;\n" +
"\\end{tikzpicture}");
"\\end{tikzpicture}");*/
return tex.toString();
}
}