UNPKG
zhu-jiang-yi-yuan-bigscreen
Version:
latest (1.0.20201209)
1.0.20201209
南方医科大学珠江医院大屏端
www.nsn.com
zhu-jiang-yi-yuan-bigscreen
/
lib
/
@types
/
chart
/
PieChartProps.d.ts
11 lines
(10 loc)
•
252 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import
{
IBaseGemoProps
}
from
'bizcharts/es/interface'
;
import
{
ChartProps
}
from
'./ChartProps'
;
export
type
PieChartProps
= {
axis
: {
field
:
string
;
dimension
:
string
; }, } &
Omit
<
ChartProps
,
'axis'
> &
Pick
<
IBaseGemoProps
,
'color'
>