score:1
Accepted answer
All you need to do is to prepare the correct data format for each series and create a separate y-axis for each pane. I have prepared a simple example with your data here:
for (i; i < dataLength; i += 1) {
date = new Date(data[i].Date).getTime();
ohlc.push([
date, // the date
data[i].Open, // open
data[i].High, // high
data[i].Low, // low
data[i].Close // close
]);
volume.push([
date, // the date
data[i].Volume // the volume
]);
if (data[i].ema_1) {
ema1.push([date, data[i].ema_1]);
}
}
Live demo: https://codesandbox.io/s/highcharts-react-d-zn9oj?file=/demo.jsx
Source: stackoverflow.com
Related Query
- Highchart EMA, Price & MACD plot
- Highcharts plot MACD + EMA + Volume
- Plot Highchart Gauge with JSON Data
- How to know information about the clicked bar in highchart column r shiny plot
- programatically fire a click event for a point on highchart scatter plot
- Highchart - Plot missing DateTime values on xAxis
- HighChart : plot line click event for multiple chart
- Why does this highchart plot not render in IE or chrome?
- Highchart plot points are being displayed incorrectly
- Is there limit on the number of data points to plot HighChart
- Correct format of using csv data to plot highchart
- Price line disappears in HighChart
- Plot Highchart multiple series line chart using JSON data
- React: How to plot API response in highchart
- Highchart : How to plot Stacked bar graph with line by below JSON respons
- change background color for highchart candlestick plot
- Unable to plot two piechart using Highchart
- Strange character in the Highstock source code
- How to add a vertical plot line in multiple line series and show the tooltip on Plot line in highchart
- Why does my Highchart look different when I transfer my code from Jsfiddle to my server?
- Highchart shiny R scatter plot - how to define individual point colors
- When adding point on dynamically created Multiple Highchart Graphs on a single page, the plot line draws to the start point instead of last point?
- How to plot multiple lines in a single graph using HighChart with JSON
- I had follow someone code samples and try apply to my HighChart program but I can't get it work at all
- How to plot incomplete series with highchart
- Is is possible to change line color in highchart xy plot for specific y range only?
- Highchart datetime graph x-axis unable to get data on plot when min and max is on
- Column based Highchart drilldown series assign color code to each column
- How to detect multiple cliks in a bar in highchart column r shiny plot
- Highchart - alternateGridColor, plot bands issue
More Query from same tag
- How to add another same chart but with different data?
- JSON string from SQL Table - Bad values in the chart
- Highcharts : is it possible to make specific plots of a series transparent.
- Highchart : How to plot Stacked bar graph with line by below JSON respons
- install highcharts exporting server
- HighCharts series Z index
- HighCharts synchronisation tooltip effect other chart
- How to trigger legend click event on outside when using Highchart and no using JQuery
- Drilldown displayed in coloum instead of pie chart
- Highcharts pattern fill how to bring the shapes closer together?
- Pie Chart with Highchatrs
- Highcharts pie color of a part when i click on this
- highcharts line for one point serie
- Change the font size and orientation of Highcharts Gantt X-axis labels
- How to get what are the items collapsed in gantt highcharts-angular
- Highcharts show days of month dates in X axis (from JSON file). tickInterval: not work?
- Data filtration React Highcharts
- How do you remove elements added with .add() function in HighCharts?
- ionic 2 Uncaught (in promise): Error: Highcharts error #17: www.highcharts.com/errors/17
- Highcharts error loading maps plugin
- Highstock step multiple data points on same x axis
- hide a line chart while mouseover in highchart
- Filling xAxis for all nights in Highcharts
- Highcharts suddenly stop plotting
- No image displayed with highcharts
- Highchart multi color gradient
- Replacing/removing the metric notations like thousands "k" abbreviation
- Highcharts: Get visibility of series after legendItemClick
- How to set xAxis only with time in Highstock step graph
- On common x-axis how to draw a chart with different unit of dataset array (multi line chart)