Explorar el Código

Update Charts/MiniArea props type

实测, 字符串应该没有问题. https://github.com/alibaba/BizCharts/blob/74e8bcfd18aa936abdbb6af9fc591f45b3a1f2c2/doc/tutorial/data.md
iugo hace 7 años
padre
commit
7a03eb0421
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      src/components/Charts/MiniArea/index.d.ts

+ 1 - 1
src/components/Charts/MiniArea/index.d.ts

@@ -21,7 +21,7 @@ export interface IMiniAreaProps {
   xAxis?: IAxis;
   yAxis?: IAxis;
   data: Array<{
-    x: number;
+    x: number | string;
     y: number;
   }>;
 }