소스 검색

'多边形添加边框样式'

zhangyu 5 년 전
부모
커밋
ca3bdabd7a
3개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. 1 1
      saga-web-big/src/items/SLineItem.ts
  2. 1 1
      saga-web-big/src/items/SPolygonItem.ts
  3. 1 1
      saga-web-graph/src/enums/SLineStyle.ts

+ 1 - 1
saga-web-big/src/items/SLineItem.ts

@@ -57,7 +57,7 @@ export class SLineItem extends SGraphItem {
     }
 
     /** 线条样式    */
-    private _lineStyle: SLineStyle = SLineStyle.Soild;
+    private _lineStyle: SLineStyle = SLineStyle.Solid;
     get lineStyle(): SLineStyle {
         return this._lineStyle;
     }

+ 1 - 1
saga-web-big/src/items/SPolygonItem.ts

@@ -78,7 +78,7 @@ export class SPolygonItem extends SGraphItem {
     }
 
     /** 边框样式 */
-    _lineStyle: SLineStyle = SLineStyle.Soild;
+    _lineStyle: SLineStyle = SLineStyle.Solid;
     get lineStyle(): SLineStyle {
         return this._lineStyle;
     }

+ 1 - 1
saga-web-graph/src/enums/SLineStyle.ts

@@ -5,7 +5,7 @@
  */
 export enum SLineStyle {
     /** 实线    */
-    Soild,
+    Solid,
     /** 虚线    */
     Dashed,
     /** 点线    */