GithubHelp home page GithubHelp logo

Comments (2)

codingarmadillo avatar codingarmadillo commented on May 18, 2024
import React, { Component } from 'react';
import { HighchartsChart, Chart, XAxis, YAxis, LineSeries } from 'react-jsx-highcharts';

const data1 = [
    [34.402212, 35.24466, 36.089052, 36.934568, 37.78058, 38.626772, 39.473452, 40.320504, 41.167544],
    [0, 35.24466, 36.089052, 36.934568, 37.78058, 38.626772, 39.473452, 40.320504, 0],
    [10, 35.24466, 36.089052, 36.934568, 37.78058, 38.626772, 39.473452, 40.320504, 10]
];

const data2 = [
    [4.566509, 4.4117, 4.26037, 4.113196, 3.971816, 3.837871, 3.713, 3.595715, 3.483925],
    [0, 4.4117, 4.26037, 4.113196, 3.971816, 3.837871, 3.713, 3.595715, 0],
    [2, 4.4117, 4.26037, 4.113196, 3.971816, 3.837871, 3.713, 3.595715, 2]
];

class App extends Component {
    constructor(props) {
        super(props);

        this.state = {
            series: 'data1'
        };
    }

    toggleState = () => {
        this.setState({
            series: this.state.series === 'data1' ? 'data2' : 'data1'
        });
    };

    render() {
        const data = this.state.series === 'data1' ? data1 : data2;

        console.log(data);

        return (
            <div>
                Toggle state:
                <input type='checkbox'
                       onChange={this.toggleState}/>

                <HighchartsChart>
                    <Chart/>

                    <XAxis />

                    <YAxis id='axis1'>
                        {data.map((item, index) => (
                            <LineSeries key={index}
                                        id={`series${index + 1}`}
                                        data={[ ...item ]}/>
                        ))}
                    </YAxis>
                </HighchartsChart>
            </div>
        );
    }
}

export default App;

from react-jsx-highcharts.

codingarmadillo avatar codingarmadillo commented on May 18, 2024

I just upgraded highcharts to 6.0.1 and that seems to have fixed it.

from react-jsx-highcharts.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.