New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@areslabs/ares-core-echarts

Package Overview
Dependencies
Maintainers
0
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@areslabs/ares-core-echarts

echarts for jdreact

  • 3.0.0
  • latest
  • npm
  • Socket score

Version published
Weekly downloads
3
decreased by-50%
Maintainers
0
Weekly downloads
 
Created
Source

jdreact-core-echarts

基于百度echarts封装的jdreact组件。

安装

npm install @areslabs/ares-core-echarts --save

Demo代码

import React, {Component,} from 'react'
import PropTypes from 'prop-types';
import {
    StyleSheet,
    View,
} from 'react-native';

import {
    JDRouter,
    JDText,
} from '@areslabs/ares-core-lib';
import JDEcharts from '@areslabs/ares-core-echarts';
const {NavigationBar} = JDRouter;

class JDEchartsExample extends Component {

    static defaultProps ={
        option:{
            title: {
                text: 'ECharts demo'
            },
            tooltip: {},
            legend: {
                data:['销量']
            },
            xAxis: {
                data: ["衬衫","羊毛衫","雪纺衫","裤子","高跟鞋","袜子"]
            },
            yAxis: {},
            series: [{
                name: '销量',
                type: 'bar',
                data: [5, 20, 36, 10, 10, 20]
            }]
        }
    }

    render() {
        return (
            <View style={styles.wrapper}>
                <NavigationBar Title="Echarts组件"/>
                <View style={styles.content}>
                    <JDText>
                        跨平台通用Echarts组件,Echarts文档地址:http://echarts.baidu.com/option.html#title
                    </JDText>
                </View>
                <JDEcharts option={this.props.option} style={styles.chartStyle}/>
            </View>
        )
    }
}
const styles = StyleSheet.create({
    wrapper: {
        flex: 1,

    },
    content: {
        paddingTop: 10,
        paddingLeft: 10,
        paddingRight: 10,
    },
    chartStyle:{
        marginTop:20,
    },
});
module.exports = JDEchartsExample;

运行效果

参见JDReactAPIDemos中 JDEchartsExample

组件props说明

  • option (object): echarts的option对象(参见文档)。
  • width (number): 图表宽度,默认值为包裹的容器宽度。
  • height (number): 图表高度,默认值400。
  • ...ViewPropTypes:支持所有View的属性

Keywords

FAQs

Package last updated on 11 Dec 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc