
Security News
Crates.io Users Targeted by Phishing Emails
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
taro-charts
Advanced tools
Echarts component for Taro, support WeChat mini-programs, H5 and React Native application.
yarn add taro-charts
import Taro,{setNavigationBarTitle} from '@tarojs/taro';
import * as echarts from 'echarts/core';
import {
BarChart,
} from 'echarts/charts';
import {
GridComponent
} from 'echarts/components';
import {Echarts, EchartsRenderer} from 'taro-charts'
import { useCallback, useEffect, useMemo, useState } from 'react';
echarts.use([
GridComponent,
EchartsRenderer,
BarChart,
])
const {windowWidth} = Taro.getSystemInfoSync()
const E_HEIGHT = 300;
const E_WIDTH = windowWidth;
export default function LoupanView() {
useEffect(() => {
setNavigationBarTitle({ title: '基础柱状图' });
}, []);
const option = useMemo(()=>{
return{
xAxis: {
type: 'category',
data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun']
},
yAxis: {
type: 'value'
},
series: [
{
data: [150, 230, 224, 218, 135, 147, 260],
type: 'bar'
}
]
}
},[])
const [chart, setChart] = useState<echarts.ECharts>();
useEffect(()=>{
clickedCharts()
return ()=> {
if (process.env.TARO_ENV !== 'weapp') {
chart?.dispose()
}
}
},[chart])
const clickedCharts = useCallback(()=>{
chart?.on('click', function(params) {
console.log(params)
});
},[chart])
return <Echarts
// 只有RN端需要指定RNRenderType的类型('skia'|'svg')
// Please specify the RNRenderType('skia'|'svg'), when you use ReactNative
RNRenderType='skia'
// 如果要渲染多个图表,需要指定不同的canvasId
// Please specify different canvasId, when you want to use multiple charts,
canvasId='chart'
onContextCreate={(canvas)=>{
const chart = echarts.init(canvas, 'light', {
renderer: 'svg',
devicePixelRatio: Taro.getSystemInfoSync().pixelRatio, // 可以解决小程序下图表模糊的问题
width: E_WIDTH,
height: E_HEIGHT,
});
canvas.setChart?.(chart);
chart.setOption(option);
setChart(chart)
}}
/>;
}
FAQs
Echarts for taro
We found that taro-charts demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
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.
Security News
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
Product
Socket now lets you customize pull request alert headers, helping security teams share clear guidance right in PRs to speed reviews and reduce back-and-forth.
Product
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.