question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Additional customizations for radar charts

See original GitHub issue

Dear 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:closed
  • Created 3 years ago
  • Comments:14 (11 by maintainers)

github_iconTop GitHub Comments

1reaction
swhardencommented, Nov 29, 2020

This looks fantastic @Benny121221, way to go!

RadarAxis.Circle RadarAxis.Polygon
image image

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 🤞

0reactions
swhardencommented, Nov 29, 2020

The last thing that was missing was that I could define the maximum of the axes myself, instead of deriving it from the given values. I created a PR for this.

Thanks @SommerEngineering! I merged #636 then refined the cookbook example names/descriptions a bit. Thanks for the contribution! 👍

Read more comments on GitHub >

github_iconTop 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 >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found