How to use react-jsx-highstock - 10 common examples

To help you get started, we’ve selected a few react-jsx-highstock examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github whawker / react-jsx-highcharts / examples / Highstocks / App.js View on Github external
{code}

      
    );
  }
}

export default withHighcharts(App, Highcharts);
github zencrepes / zencrepes / imports / ui / charts / StatsPerWeek.js View on Github external
);
    }
}

export default connect(mapStateToProps)(withHighcharts(StatsPerWeek, Highcharts));
github zencrepes / zencrepes / imports / ui / components / Cards / OverallMemberVelocityWeeks / AssigneeTable.js View on Github external
const mapDispatch = dispatch => ({
    updateFromQuery: dispatch.data.updateFromQuery,
});

const mapState = state => ({
    repartition: state.repartition.repartition,
    filters: state.repartition.filters,
});

export default
    connect(mapState, mapDispatch)
    (
        withRouter
        (
            withStyles(tableStyle)(
                withHighcharts(AssigneeTable, Highcharts)
            )
        )
    );
github zencrepes / zencrepes / imports / ui / charts / StatsPerDay.js View on Github external
);
    }
}

export default connect(mapStateToProps)(withHighcharts(StatsPerDay, Highcharts));
github zencrepes / zencrepes / imports / ui / views / Velocity / OverallAssigneesVelocityWeeks / AssigneeTable.js View on Github external
const mapDispatch = dispatch => ({
    updateFromQuery: dispatch.data.updateFromQuery,
});

const mapState = state => ({
    repartition: state.repartition.repartition,
    filters: state.repartition.filters,
});

export default
    connect(mapState, mapDispatch)
    (
        withRouter
        (
            withStyles(tableStyle)(
                withHighcharts(AssigneeTable, Highcharts)
            )
        )
    );
github zencrepes / zencrepes / imports / ui / components / Cards / shared / HighchartsVelocity.js View on Github external
};

const mapDispatch = dispatch => ({

});


const mapState = state => ({

});


export default
    connect(mapState, mapDispatch)
    (
        withHighcharts(
            HighchartsVelocity, Highcharts
        )
    );
github zencrepes / zencrepes / imports / ui / views / Burndown / OverallVelocityWeeks / HighchartsVelocity.js View on Github external
};

const mapDispatch = dispatch => ({

});


const mapState = state => ({

});


export default
    connect(mapState, mapDispatch)
    (
        withHighcharts(
            HighchartsVelocity, Highcharts
        )
    );

react-jsx-highstock

Highcharts (including Highstock) charts built using React components

MIT
Latest version published 1 year ago

Package Health Score

65 / 100
Full package analysis