New version includes an optional label section. If you dont want to feed it an array of strings for the labels you can just pass it an empty string array and it will bypass the label creation. This is a breaking change as it adds a parameter to the spider_plot.
v3
Updated:
draw_spider_plot(values, names, bg_colors, axes_color, text_color, scale, offsetx, offsety)
draw_spider_plot(array<float> values, array<color> bg_colors, color axes_color, float scale, int offsetX = 0, int offsetY = 0)
Parameters:
values (float[]): array<float> , An array of float values to plot in the spider plot.
names (string[])
bg_colors (color[]): array<color> , An array of background colors for each sector in the spider plot.
axes_color (color): color , The color of the axes in the spider plot. Default: color.gray
text_color (color)
scale (float): float , A scaling factor for the spider plot. Default: 10
offsetx (float)
offsety (float)
Returns: void , Draws the spider plot on the chart.