SLineLegendItem.ts 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. import { SGraphItem } from "@saga-web/graph/lib";
  2. import { SPoint } from "@saga-web/draw/lib";
  3. import { SPolylineItem } from '@saga-web/big/lib';
  4. import { Legend } from '../types/Legend';
  5. /**
  6. * 图例节点Item(线类型)
  7. *
  8. * * @author 张宇(taohuzy@163.com)
  9. */
  10. export class SLineLegendItem extends SPolylineItem {
  11. /** 图例节点对象数据 */
  12. data: Legend;
  13. /**
  14. * 构造函数
  15. *
  16. * @param parent 指向父对象
  17. * @param data 图例节点对象数据
  18. */
  19. constructor(parent: SGraphItem | null, data: Legend) {
  20. super(parent,[]);
  21. this.data = data;
  22. this.id = data.ID;
  23. this.name = data.Name;
  24. this.moveTo(data.Pos.X, data.Pos.Y);
  25. if (data.Properties && data.Properties.Line) {
  26. let setPointList: SPoint[];
  27. setPointList = data.Properties.Line.map(i => {
  28. return new SPoint(i.x, i.y)
  29. })
  30. this.pointList = setPointList;
  31. }
  32. if (data.Properties && data.Properties.LineWidth) {
  33. this.lineWidth = data.Properties.LineWidth;
  34. }
  35. if (data.Properties && data.Properties.StrokeColor) {
  36. this.strokeColor = data.Properties.StrokeColor;
  37. }
  38. }
  39. toData(): Legend {
  40. this.data.Pos = {X: this.x, Y: this.y};
  41. this.data.Properties.Line = this.pointList.map(pos => {
  42. return {
  43. X: pos.x,
  44. Y: pos.y
  45. }
  46. });
  47. this.data.Properties.LineWidth = this.lineWidth;
  48. this.data.Properties.StrokeColor = this.strokeColor;
  49. return this.data;
  50. }
  51. } // Class SLineLegendItem