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.

radar chart , smallest point is always used as the base point

See original GitHub issue

I used a radar chart only one data, But the smallest point is always used as the base point, how to change it to 0 as the base point?

my code, the “2” be regarded as the minimum on the chart…

{
            backgroundColor: "rgba(179,181,198,0.2)",
            borderColor: "rgba(179,181,198,1)",
            pointBackgroundColor: "rgba(179,181,198,1)",
            pointBorderColor: "#fff",
            pointHoverBackgroundColor: "#fff",
            pointHoverBorderColor: "rgba(179,181,198,1)",
            data: [5, 5, 3, 2, 4, 5]
			
 },

00000

Issue Analytics

  • State:closed
  • Created 4 years ago
  • Comments:5 (2 by maintainers)

github_iconTop GitHub Comments

1reaction
bepsvptcommented, Aug 7, 2019

Hi @whiteme1210,

How to change the radar ratio from 0.5, 1, 1.5, 2, 2.5, … 5 to 0, 1, 2, 3, 4, 5

options: {
  scale: {
    ticks: {
      beginAtZero: true,
      stepSize: 1,
    },
  },
},
1reaction
nagixcommented, Jun 14, 2019

You can use the ticks.beginAtZero scale option.

Read more comments on GitHub >

github_iconTop Results From Across the Web

Mis-employing radar charts to distinguish multidimensional data
One problem with radar charts is that they over-encode shape, meaning for humans the minor differences on each axis are not prominent, but...
Read more >
Radar Chart in Excel (Spider Chart) - WallStreetMojo
Display values relative to a center point. It is best used when the categories are not directly comparable. Given below is an example...
Read more >
Radar chart - Wikipedia
A radar chart is a graphical method of displaying multivariate data in the form of a two-dimensional chart of three or more quantitative...
Read more >
The Mathematics behind Radar Charts | Analytics Vidhya
Time-proofing our data visualisation skillset by learning the mathematics behind creating a radar chart.
Read more >
Radar chart ‒ Qlik Sense on Windows
A radar chart consists of evenly spaced segments (axes) arranged radially around a point. There is one segment for each data value of...
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