I have nivo line chart with gaps like this:
Gaps are covered by passing y/value: null in november and december in data series
Tooltip displays only on data points and this is correct, but I want add tooltip at November and December with explanation…
I'm trying to create a line chart that uses crosshairs and tooltip using Nivo. I was able to get everything working great on desktop, but on mobile, when I try to drag across the graph with my finger, nothing happens. The only time the crosshair and…
I have a react application that uses a responsive heat map from Nivo. I'm having trouble implementing zoom functionality from d3. I've tried following examples Example1, Example2. As far as I'm aware Nivo generates an SVG but when I click/mouse roll…
I try to implement a line chart using Nivo library.
What I want to display is just an array of submission count by day. My array looks like:
const data = [
{
id: 'Submission',
color: 'hsl(213, 70%, 50%)',
data: [
{
x: '2021-03-01',
…
I've got a chart component here with simple data, dates and temperatures.What i wanted the table function to do is to log out the results array Only (ideally with just the Date key) on the console.
The table function is passed onto the OnCLick on…
Im using nivo.rocks which is a library built on top of d3.js. I need to build a marimekko graph like the histogram shown below. I want it to show the number of days a temperature was x faranheit.
I'm trying to set the x-axis as the AvgTempF from…
I am trying to use this library for charts in React:
https://nivo.rocks/
I have copied the exact same example in the docs for the horizontal column chart (bar chart) but on my env, the legends are simply not shown.
I have looked for all other issues…
When putting multiple charts tooltips from charts are hidden behind others.
Also, I am using custom tooltips for this picture, the default tooltip also shows in the same way.
Is there a way to create a chart like the one on the image in nivo? I need to scale the negative tick values on the y-axis differently from the positive tick values. Positive tick step is much smaller, but the scale should be the same.
I tried to…
I have a nivo pie chart in my react application. In this particular pie chart, there are quite a few data points. As such, when the enableArcLinkLabels is true, it looks very messy. I'd like to show the arcLinkLabels only onMouseEnter of each data…
I am relatively new to charts and trying to create a line chart using nivo.rocks to display stock prices for varying time frames such as 1day, 3 months, 1 year etc. So far the results I'm getting seems to be a horizontal trending lines or random…
Using Nivo's Responsive Bar (official docs here) and React, I've managed to create a bar chart with data showing up but the months on the X-axis are out of order. Here's the code and currently the X-axis is ordered by indexBy="month"
return(
…
Can anyone help me on how to format the y-axis in Nivo with any type of chart, my scenario is that I want to show the data example: 0, 4000, 8000, 12000 etc. But now in Nivo it always shows 0, 2000, 4000, 6000 etc. I assume it shows multiply/modulo…
I have a problem using Nivo charts with remix.run. Can't compile, error:
Error [ERR_REQUIRE_ESM]: require() of ES Module C:\Users\tomer\Code\remix-es\node_modules\d3-color\src\index.js from…
I have been trying to display a nivo line charts using data from my backend (Django). However, when the data is inserted into the nivo line chart, the react window gets unresponsive.
The backend sends the timestamps and the values like this…