Additional customizations for radar charts
See original GitHub issueDear team,
Thank you very much for this great library 🙂
I would like to see the possible font options (e.g. size, bold, font) for the radar charts as well. As far as I can see (cf. line 121 in RadarPlot.cs) the font cannot be configured right now. I would like to format the font for the axis and the category names differently. For me, this would be a valuable addition.
Also, the different axis of the radar seems to be automatic. I would need the opposite: Manually fixed axis. Let’s say something like this:
var allValues = new [,] { { 5, 357, 0.244 } };
var categoryNames = new[] { "A", "B", "C" };
var fillColors = new[] {Color.FromArgb(128, Color.CornflowerBlue)};
plt.PlotRadar(values: allValues, categoryNames: categoryNames, categoryFontSize: 26, fillColors: fillColors);
plt.RadarAxis(axisIndex: 1, min: 1, max: 7, fontSize: 21, bold: true);
plt.RadarAxis(axisIndex: 2, min: 10, max: 750, fontSize: 21, bold: true);
plt.RadarAxis(axisIndex: 3, min: -1, max: 1, fontSize: 21, bold: true);
Issue Analytics
- State:
- Created 3 years ago
- Comments:14 (11 by maintainers)
Top Results From Across the Web
How to Customize Radar Chart in Tableau
Radar charts are an effective way of visualizing data in Tableau. They allow you to compare multiple variables and quickly spot patterns.
Read more >How to Customize Radar Chart in Excel
In this article, we will outline the essential steps for creating and customizing a radar chart in Excel, including changing the chart type...
Read more >Amazon QuickSight adds axis customization options for ...
Amazon QuickSight now supports new axis configurations for small multiples and radar charts, empowering users to customize axis settings ...
Read more >Radar charts - Google Docs Editors Help
Radar charts show one or more variables in a two-dimensional graph, ... Other columns: For each column, enter numeric data. ... Customize a...
Read more >How to Create a Radar Chart in Python
Customizing the Radar Chart. We can customize the radar chart by adding more information. Line and Marker Line and marker styles can be...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
This looks fantastic @Benny121221, way to go!
RadarAxis.Circle
RadarAxis.Polygon
I think we addressed all of @SommerEngineering’s original suggestions, but if not feel free to open this issue back up 👍
I hope to get a ScottPlot 4.1 pre-release out on NuGet tomorrow 🤞
Thanks @SommerEngineering! I merged #636 then refined the cookbook example names/descriptions a bit. Thanks for the contribution! 👍