I am using Responsive bar canvas as it is suggested to use for large datasets. But, it is not working in my case and all the bars are overlapping on each other.
Can anyone please take a look and help if I am missing on something.
Check below link…
I got an issue while trying to render a radar chart using nivo/radar.
Here is the result I got
The dots are not aligned.
It happen after pushing data to the component (update of chart).
Here is the set of data:
data1: 2.7
data2: 2.7
data2:…
I want to add annotations to my ResponsiveLine chart. Is it possible to do it? I only could add them to Bar charts. I am using the Nivo geo Library for React.
Do you have any idea about doing that?
This is my current component:
function Graph({…
Can anyone help me how to implement mixed chart (Responsive Bar & Line) chart using nivo chart nivo docs, I've tried to follow some of example like this codesandbox, but the line won't show.
Here is the structure of my data:
"data": [
{
…
I am trying to show some data into a nivo line chart. If i only send expenses via an API everything works fine, but when i want to add incomes to the mockData state which i'll pass it to the nivo line chart, it won't gonna show in the line chart +…
I want to use a Line Chart from nivo.rocks, but everytime I resize the page I get lots of errors like Error: attribute transform: Expected ')', "…209394986644e-16translate(,),0tr…". and I don't know how to fix them. Can someone please explain…
I'd like to leverage @nivo/calendar to display a year's worth of data (every single day of the year). All my dates are within the valid range. If I set the start date to 2016-01-01 (where YYY-MM-DD), I get two year calendars (2015+2016). Setting it…
I am trying to pass a custom valueFormat function as props so the arcLabels will be rendered with an trailing "%" to a PieChart.
While this works pretty well with simple expressions, I do not get it to work with an arrow function. I am fairly new to…
I followed this tutorial to get an intro to React and everything works as intended.
So I tried to add another of the Nivo plots, sunburst, following the same method.
My App.js imports this new scene
It also as the route set up
I've made a…
Data :
Times to do a task (5, 10, 15, 20, 25, 30 minutes for example)
What I want :
X-AXIS : % of times
Y-AXIS : Times (5, 10, 15, 20, 25, 30, 35)
Create a react graph that displays the % of times (X axis) that are below such or such value (Y axis)…
I'm trying to implement a nivo line chart where the data from backend looks like this:
const data = [
{
id: 'events',
color: 'blue',
data: [
{
x: '2021-03-01',
y: 314,
},
{
…
I'm new to Nivo, and I've been playing around with the docs to implement a scatter chart on a project. Everthing is working fine except that my node items in the chart overflows out of the chart area.
The Avatars go out of the chart area and I'm…