realreport-designer 1.11.15 → 1.11.16

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -772,6 +772,8 @@ declare enum BoxItemsAlign {
772
772
  END = "end"
773
773
  }
774
774
 
775
+ declare type CategorizedSeries = RealMapChartBarSeries | RealMapChartPieSeries;
776
+
775
777
  declare enum CCITTScheme {
776
778
  GROUP_3 = "g3",
777
779
  GROUP_3_2D = "g3-2d",
@@ -1109,8 +1111,8 @@ declare abstract class ChartSeriesCollection<T extends ReportGroupItem> extends
1109
1111
  save(target: any): void;
1110
1112
  get(index: number): ChartSeries<T>;
1111
1113
  indexOf(series: ChartSeries<T>): number;
1112
- add(loader: IReportLoader, series: ChartSeries<T> | ConfigObject, index?: number): ChartSeries<T>;
1113
- addAll(loader: IReportLoader, series: (ChartSeries<T> | ConfigObject)[], index?: number): boolean;
1114
+ add(loader: IReportLoader, series: ChartSeries<T> | ConfigObject$2, index?: number): ChartSeries<T>;
1115
+ addAll(loader: IReportLoader, series: (ChartSeries<T> | ConfigObject$2)[], index?: number): boolean;
1114
1116
  removeAt(index: number): boolean;
1115
1117
  remove(series: ChartSeries<T>): boolean;
1116
1118
  clear(): boolean;
@@ -1179,20 +1181,6 @@ declare class ColorPaletteAsset extends AssetItem {
1179
1181
  protected _doSave(target: any): void;
1180
1182
  }
1181
1183
 
1182
- declare enum ColorScaleLayout {
1183
- AUTO = "auto",
1184
- VERTICAL = "vertical",
1185
- HORIZONTAL = "horizontal"
1186
- }
1187
-
1188
- declare enum ColorScaleLocation {
1189
- BODY = "body",
1190
- BOTTOM = "bottom",
1191
- LEFT = "left",
1192
- RIGHT = "right",
1193
- TOP = "top"
1194
- }
1195
-
1196
1184
  /**
1197
1185
  * 수직으로 자식 item들을 배치한다.
1198
1186
  * Html flex box를 활용한다.
@@ -1274,10 +1262,26 @@ declare class ColumnHeaderLayer extends HeaderLayer$1 {
1274
1262
 
1275
1263
  declare type ConditionalFormattingRule = IDataBarRuleType;
1276
1264
 
1277
- declare type ConfigObject = {
1265
+ declare type ConfigObject$1 = {
1266
+ location?: string;
1267
+ group?: string;
1268
+ name?: string;
1269
+ align?: string;
1270
+ verticalAlign?: string;
1271
+ layout?: string;
1272
+ offsetX?: number;
1273
+ itemGap?: number;
1274
+ };
1275
+
1276
+ declare type ConfigObject$2 = {
1278
1277
  [key: string]: any;
1279
1278
  };
1280
1279
 
1280
+ declare type ConfigObject = {
1281
+ name?: string;
1282
+ color?: string;
1283
+ };
1284
+
1281
1285
  declare type ContextValueCallback = (ctx: PrintContextBase) => any;
1282
1286
 
1283
1287
  /**
@@ -3602,8 +3606,8 @@ declare class ExcelDataBandRowGroupCollection extends ReportItemCollection<Excel
3602
3606
  get band(): ExcelDataBand;
3603
3607
  load(loader: IReportLoader, src: any): void;
3604
3608
  save(target: any): void;
3605
- add(group: ExcelDataBandRowGroup | ConfigObject, index?: number): ExcelDataBandRowGroup;
3606
- addAll(groups: (ExcelDataBandRowGroup | ConfigObject)[], index?: number): boolean;
3609
+ add(group: ExcelDataBandRowGroup | ConfigObject$2, index?: number): ExcelDataBandRowGroup;
3610
+ addAll(groups: (ExcelDataBandRowGroup | ConfigObject$2)[], index?: number): boolean;
3607
3611
  removeAt(index: number): boolean;
3608
3612
  remove(group: ExcelDataBandRowGroup): boolean;
3609
3613
  clear(): boolean;
@@ -5417,7 +5421,7 @@ declare class HichartAxisPlotBandCollection extends ReportItemCollection<Hichart
5417
5421
  load(src: any): void;
5418
5422
  save(target: any): void;
5419
5423
  indexOf(item: HichartAxisPlotBand): number;
5420
- add(band: HichartAxisPlotBand | ConfigObject, index?: number): HichartAxisPlotBand;
5424
+ add(band: HichartAxisPlotBand | ConfigObject$2, index?: number): HichartAxisPlotBand;
5421
5425
  remove(line: HichartAxisPlotBand): void;
5422
5426
  getWrapper(): any;
5423
5427
  get count(): number;
@@ -5536,7 +5540,7 @@ declare class HichartAxisPlotLineCollection extends ReportItemCollection<Hichart
5536
5540
  load(src: any): void;
5537
5541
  save(target: any): void;
5538
5542
  indexOf(item: HichartAxisPlotLine): number;
5539
- add(line: HichartAxisPlotLine | ConfigObject, index?: number): HichartAxisPlotLine;
5543
+ add(line: HichartAxisPlotLine | ConfigObject$2, index?: number): HichartAxisPlotLine;
5540
5544
  remove(line: HichartAxisPlotLine): void;
5541
5545
  getWrapper(): any;
5542
5546
  get count(): number;
@@ -7533,8 +7537,6 @@ declare interface IUserDataTemplateItem {
7533
7537
  template?: ISimpleDataTemplate | IBandDataTemplate;
7534
7538
  }
7535
7539
 
7536
- declare type LabelPosition = 'auto' | 'bottom' | 'center' | 'left' | 'right' | 'top';
7537
-
7538
7540
  declare type LanguageCode = keyof typeof ISO_639_LANGUAGES;
7539
7541
 
7540
7542
  declare type LanguageItem = {
@@ -7544,6 +7546,129 @@ declare type LanguageItem = {
7544
7546
 
7545
7547
  /* Excluded from this release type: LayerElement */
7546
7548
 
7549
+ declare enum Layout {
7550
+ AUTO = "auto",
7551
+ VERTICAL = "vertical",
7552
+ HORIZONTAL = "horizontal"
7553
+ }
7554
+
7555
+ declare interface Legend {
7556
+ location: Location_2;
7557
+ group: string;
7558
+ name: string;
7559
+ align: Align$1;
7560
+ verticalAlign: VerticalAlign$1;
7561
+ layout: Layout;
7562
+ offsetX: number;
7563
+ itemGap: number;
7564
+ background: {
7565
+ style: RealMapChartSvgStyles;
7566
+ };
7567
+ }
7568
+
7569
+ /**
7570
+ * RealMap Chart의 개별 Legend 항목
7571
+ */
7572
+ declare class LegendItem extends ReportItemCollectionItem {
7573
+ static readonly PROP_LOCATION = "location";
7574
+ static readonly PROP_GROUP = "group";
7575
+ static readonly PROP_NAME = "name";
7576
+ static readonly PROP_ALIGN = "align";
7577
+ static readonly PROP_VERTICAL_ALIGN = "verticalAlign";
7578
+ static readonly PROP_LAYOUT = "layout";
7579
+ static readonly PROP_OFFSET_X = "offsetX";
7580
+ static readonly PROP_ITEM_GAP = "itemGap";
7581
+ static readonly PROPINFOS: IPropInfo[];
7582
+ private _location;
7583
+ private _group;
7584
+ private _name;
7585
+ private _align;
7586
+ private _verticalAlign;
7587
+ private _layout;
7588
+ private _offsetX;
7589
+ private _itemGap;
7590
+ private _index;
7591
+ constructor(collection: LegendItemCollection, src?: any);
7592
+ get location(): Location_2;
7593
+ set location(value: Location_2);
7594
+ get group(): string;
7595
+ set group(value: string);
7596
+ get name(): string;
7597
+ set name(value: string);
7598
+ get align(): Align;
7599
+ set align(value: Align);
7600
+ get verticalAlign(): VerticalAlign;
7601
+ set verticalAlign(value: VerticalAlign);
7602
+ get layout(): Layout;
7603
+ set layout(value: Layout);
7604
+ get offsetX(): number;
7605
+ set offsetX(value: number);
7606
+ get itemGap(): number;
7607
+ set itemGap(value: number);
7608
+ get index(): number;
7609
+ get collection(): LegendItemCollection;
7610
+ get page(): ReportPageBase;
7611
+ getConfig(): {
7612
+ location: Location_2;
7613
+ group: string;
7614
+ name: string;
7615
+ align: Align;
7616
+ verticalAlign: VerticalAlign;
7617
+ layout: Layout;
7618
+ offsetX: number;
7619
+ itemGap: number;
7620
+ background: {
7621
+ style: {
7622
+ fill: string;
7623
+ stroke: string;
7624
+ strokeWidth: string;
7625
+ padding: string;
7626
+ };
7627
+ };
7628
+ };
7629
+ get itemType(): string;
7630
+ get displayPath(): string;
7631
+ get marqueeParent(): any;
7632
+ protected _getStyleProps(): string[];
7633
+ getEditProps(): IPropInfo[];
7634
+ getPropDomain(prop: IPropInfo): any[];
7635
+ protected _doLoad(src: any): void;
7636
+ protected _doSave(target: any): void;
7637
+ getCollectionLabel(): string;
7638
+ }
7639
+
7640
+ /**
7641
+ * RealMap Chart의 Legend 컬렉션
7642
+ */
7643
+ declare class LegendItemCollection extends ReportItemCollection<LegendItem> {
7644
+ private _owner;
7645
+ private _items;
7646
+ constructor(owner: RealMapItem);
7647
+ get owner(): RealMapItem;
7648
+ get count(): number;
7649
+ get items(): LegendItem[];
7650
+ get outlineParent(): IOutlineSource;
7651
+ get outlineExpandable(): boolean;
7652
+ get outlineLabel(): string;
7653
+ get outlineItems(): IOutlineSource[];
7654
+ isEditableCollection(): boolean;
7655
+ getCollectionLabel(): string;
7656
+ get page(): ReportPageBase;
7657
+ get displayPath(): string;
7658
+ get level(): number;
7659
+ get(index: number): LegendItem;
7660
+ indexOf(item: LegendItem): number;
7661
+ load(src: any): void;
7662
+ save(target: any): void;
7663
+ add(item: LegendItem | ConfigObject$1, index?: number): LegendItem;
7664
+ remove(item: LegendItem): void;
7665
+ clear(): void;
7666
+ getSaveType(): string;
7667
+ getConfig(): any[];
7668
+ protected _doMoveItem(from: number, to: number): boolean;
7669
+ private $_resetItems;
7670
+ }
7671
+
7547
7672
  declare abstract class LinkableReportData extends ReportData implements IEditCommandStackOwner {
7548
7673
  private static readonly LOCAL_PROPS;
7549
7674
  protected _mode: 'link' | 'embed';
@@ -7613,8 +7738,83 @@ declare interface LoadingManager {
7613
7738
 
7614
7739
  declare const LocalFileTypes: readonly ["json", "csv", "excel"];
7615
7740
 
7741
+ declare enum Location_2 {
7742
+ BODY = "body",
7743
+ BOTTOM = "bottom",
7744
+ LEFT = "left",
7745
+ RIGHT = "right",
7746
+ TOP = "top"
7747
+ }
7748
+
7749
+ declare interface MapChartCategory$1 {
7750
+ name: string;
7751
+ color: string;
7752
+ }
7753
+
7754
+ /**
7755
+ * Bar Series의 개별 Category 항목
7756
+ */
7757
+ declare class MapChartCategory extends ReportItemCollectionItem {
7758
+ static readonly PROP_NAME = "name";
7759
+ static readonly PROP_COLOR = "color";
7760
+ static readonly PROPINFOS: IPropInfo[];
7761
+ private _name;
7762
+ private _color;
7763
+ private _index;
7764
+ constructor(collection: MapChartCategoryCollection, src?: any);
7765
+ get name(): string;
7766
+ set name(value: string);
7767
+ get color(): string;
7768
+ set color(value: string);
7769
+ get index(): number;
7770
+ get collection(): MapChartCategoryCollection;
7771
+ get page(): ReportPageBase;
7772
+ get itemType(): string;
7773
+ get displayPath(): string;
7774
+ get marqueeParent(): any;
7775
+ protected _getStyleProps(): string[];
7776
+ getEditProps(): IPropInfo[];
7777
+ protected _doLoad(src: any): void;
7778
+ protected _doSave(target: any): void;
7779
+ getCollectionLabel(): string;
7780
+ }
7781
+
7782
+ /**
7783
+ * Bar Series의 Category 컬렉션
7784
+ */
7785
+ declare class MapChartCategoryCollection extends ReportItemCollection<MapChartCategory> {
7786
+ private _owner;
7787
+ private _categories;
7788
+ constructor(owner: CategorizedSeries);
7789
+ get owner(): CategorizedSeries;
7790
+ get count(): number;
7791
+ get items(): MapChartCategory[];
7792
+ get outlineParent(): IOutlineSource;
7793
+ get outlineExpandable(): boolean;
7794
+ get outlineLabel(): string;
7795
+ get outlineItems(): IOutlineSource[];
7796
+ isEditableCollection(): boolean;
7797
+ getCollectionLabel(): string;
7798
+ get page(): ReportPageBase;
7799
+ get displayPath(): string;
7800
+ get level(): number;
7801
+ get(index: number): MapChartCategory;
7802
+ indexOf(item: MapChartCategory): number;
7803
+ load(src: any): void;
7804
+ save(target: any): void;
7805
+ add(category: MapChartCategory | ConfigObject, index?: number): MapChartCategory;
7806
+ remove(category: MapChartCategory): void;
7807
+ clear(): void;
7808
+ getSaveType(): string;
7809
+ protected _doMoveItem(from: number, to: number): boolean;
7810
+ private $_resetCategories;
7811
+ }
7812
+
7616
7813
  declare interface MapSource {
7617
7814
  url: string;
7815
+ dokdo?: number;
7816
+ showDummies?: boolean;
7817
+ insets?: string[];
7618
7818
  padding?: number;
7619
7819
  exclude?: string[];
7620
7820
  }
@@ -7671,6 +7871,25 @@ declare interface ModelPropertyTypeProps {
7671
7871
  include?: string[];
7672
7872
  }
7673
7873
 
7874
+ /**
7875
+ * Number property.
7876
+ */
7877
+ declare class NumberProperty extends ValueProperty {
7878
+ static readonly $_ctor: string;
7879
+ private _minimum;
7880
+ private _maximum;
7881
+ /**
7882
+ * 최소값.
7883
+ */
7884
+ get minimum(): number;
7885
+ set minimum(value: number);
7886
+ /**
7887
+ * 최대값.
7888
+ */
7889
+ get maximum(): number;
7890
+ set maximum(value: number);
7891
+ }
7892
+
7674
7893
  /* Excluded from this release type: OutlineBodyView */
7675
7894
 
7676
7895
  /* Excluded from this release type: OutlineElement */
@@ -8171,19 +8390,17 @@ declare interface PdfPermissions {
8171
8390
 
8172
8391
  declare type PdfVersion = '1.3' | '1.4' | '1.5' | '1.6' | '1.7' | '1.7ext3';
8173
8392
 
8174
- declare interface PieCategory {
8175
- name: string;
8176
- color: string;
8177
- }
8178
-
8179
8393
  /* Excluded from this release type: Point */
8180
8394
 
8181
8395
  declare interface PointLabel extends BaseConfig {
8396
+ visible?: boolean;
8182
8397
  text?: string;
8183
- position?: LabelPosition;
8398
+ position?: string;
8184
8399
  numberFormat?: string;
8185
8400
  }
8186
8401
 
8402
+ declare type PointShape = 'square' | 'triangle' | 'circle' | 'diamond' | 'star' | 'itriangle' | 'rectangle';
8403
+
8187
8404
  declare abstract class PopupElement extends ReportElement implements Closable {
8188
8405
  close(): void;
8189
8406
  protected _doClose(): void;
@@ -9688,6 +9905,8 @@ declare class RealChartMarquee extends EditMarquee<RealChartItemElement> {
9688
9905
  private $_layoutAxisItem;
9689
9906
  }
9690
9907
 
9908
+ declare const REALMAP_SERIES_STYLE_NAMES: (keyof RealMapChartSvgStyles)[];
9909
+
9691
9910
  declare const REALMAP_TEXT_STYLE_NAMES: (keyof RealMapChartSvgStyles)[];
9692
9911
 
9693
9912
  declare class RealMapChartAxisGrid extends ChartObject$1<RealMapItem, RealMapChartAxisGridConfig> {
@@ -9717,6 +9936,48 @@ declare interface RealMapChartAxisGridConfig {
9717
9936
  };
9718
9937
  }
9719
9938
 
9939
+ declare class RealMapChartBarSeries extends RealMapSeries<RealMapChartBarSeriesConfig> {
9940
+ static readonly PROP_WIDTH = "width";
9941
+ static readonly PROP_HEIGHT = "height";
9942
+ static readonly PROP_LEGEND_BY_CATEGORY = "legendByCategory";
9943
+ static readonly PROP_CATEGORIES = "categories";
9944
+ static readonly PROP_TOOLTIP_TEXT = "tooltipText";
9945
+ static readonly PROPINFOS: IPropInfo[];
9946
+ private _width;
9947
+ private _height;
9948
+ private _legendByCategory;
9949
+ private _tooltipText;
9950
+ private _categories;
9951
+ constructor(collection: RealMapChartSeriesCollection);
9952
+ get width(): number;
9953
+ set width(value: number);
9954
+ get height(): number;
9955
+ set height(value: number);
9956
+ get legendByCategory(): boolean;
9957
+ set legendByCategory(value: boolean);
9958
+ get categories(): MapChartCategoryCollection;
9959
+ get tooltipText(): string;
9960
+ set tooltipText(value: string);
9961
+ getChartConfig(context: PrintContext): RealMapChartBarSeriesConfig;
9962
+ protected _getEditProps(): IPropInfo[];
9963
+ protected _doLoad(loader: IReportLoader, source: any): void;
9964
+ protected _doSave(target: ReportTarget): void;
9965
+ get outlineItems(): IOutlineSource[];
9966
+ get outlineExpandable(): boolean;
9967
+ getPopupPropLabel(prop: string): string;
9968
+ protected getDataValues(): unknown[];
9969
+ private $_getCategoriesForChart;
9970
+ }
9971
+
9972
+ declare interface RealMapChartBarSeriesConfig extends SeriesConfig {
9973
+ type: 'bar';
9974
+ width?: number;
9975
+ height?: number;
9976
+ legendByCategory?: boolean;
9977
+ categories?: MapChartCategory$1[];
9978
+ tooltipText?: string;
9979
+ }
9980
+
9720
9981
  declare class RealMapChartBody extends ChartObject$1<RealMapItem, RealMapChartBodyConfig> {
9721
9982
  static readonly PROP_PROJECTION = "projection";
9722
9983
  static readonly PROP_SCROLL = "scroll";
@@ -9790,10 +10051,10 @@ declare class RealMapChartColorScale extends ChartObject$1<RealMapItem, RealMapC
9790
10051
  set barWidth(value: number);
9791
10052
  get gap(): number;
9792
10053
  set gap(value: number);
9793
- get layout(): ColorScaleLayout;
9794
- set layout(value: ColorScaleLayout);
9795
- get location(): ColorScaleLocation;
9796
- set location(value: ColorScaleLocation);
10054
+ get layout(): Layout;
10055
+ set layout(value: Layout);
10056
+ get location(): Location_2;
10057
+ set location(value: Location_2);
9797
10058
  get logBase(): number;
9798
10059
  set logBase(value: number);
9799
10060
  get maxColor(): string;
@@ -9813,8 +10074,8 @@ declare interface RealMapChartColorScaleConfig extends BaseConfig {
9813
10074
  barLength: string | number;
9814
10075
  barWidth: number;
9815
10076
  gap: number;
9816
- layout: ColorScaleLayout;
9817
- location?: ColorScaleLocation;
10077
+ layout: Layout;
10078
+ location?: Location_2;
9818
10079
  logBase: number;
9819
10080
  maxColor: string;
9820
10081
  minColor: string;
@@ -9863,22 +10124,74 @@ declare interface RealMapChartCreditsConfig extends BaseConfig {
9863
10124
  verticalAlign?: VerticalAlign$1;
9864
10125
  }
9865
10126
 
10127
+ declare class RealMapChartLegend extends ChartObject$1<RealMapItem, RealMapChartLegendConfig> {
10128
+ static readonly PROP_LEGEND = "legend";
10129
+ static readonly PROPINFOS: IPropInfo[];
10130
+ private _legend;
10131
+ constructor(chart: RealMapItem);
10132
+ get legend(): LegendItemCollection;
10133
+ getChartConfig(context: PrintContext): RealMapChartLegendConfig;
10134
+ getSaveLabel(): string;
10135
+ protected _getEditProps(): IPropInfo[];
10136
+ protected _doLoad(loader: IReportLoader, source: ReportSource): void;
10137
+ protected _doSave(target: ReportTarget): void;
10138
+ get outlineItems(): IOutlineSource[];
10139
+ get outlineExpandable(): boolean;
10140
+ getPopupPropLabel(prop: string): string;
10141
+ }
10142
+
10143
+ declare type RealMapChartLegendConfig = Legend[];
10144
+
9866
10145
  declare class RealMapChartMap extends ChartObject$1<RealMapItem, RealMapChartMapConfig> {
9867
10146
  static readonly PROP_URL = "url";
10147
+ static readonly PROP_DOKDO = "dokdo";
10148
+ static readonly PROP_SHOW_DUMMIES = "showDummies";
10149
+ static readonly PROP_INSETS = "insets";
9868
10150
  static readonly PROP_PADDING = "padding";
9869
10151
  static readonly PROP_EXCLUDE = "exclude";
9870
- static readonly PROPINFOS: {
10152
+ static readonly PROPINFOS: ({
9871
10153
  name: string;
9872
10154
  category: PropCategory;
9873
10155
  type: typeof ListableProperty;
9874
10156
  indented: boolean;
9875
10157
  default: any;
9876
- }[];
10158
+ domain?: undefined;
10159
+ } | {
10160
+ name: string;
10161
+ category: PropCategory;
10162
+ type: typeof NumberProperty;
10163
+ indented?: undefined;
10164
+ default?: undefined;
10165
+ domain?: undefined;
10166
+ } | {
10167
+ name: string;
10168
+ category: PropCategory;
10169
+ type: typeof StringProperty;
10170
+ domain: boolean[];
10171
+ default: boolean;
10172
+ indented?: undefined;
10173
+ } | {
10174
+ name: string;
10175
+ category: PropCategory;
10176
+ type: typeof StringProperty;
10177
+ default: string;
10178
+ indented?: undefined;
10179
+ domain?: undefined;
10180
+ })[];
9877
10181
  private _url;
10182
+ private _dokdo;
10183
+ private _showDummies;
10184
+ private _insets;
9878
10185
  private _padding;
9879
10186
  private _exclude;
9880
10187
  get url(): string;
9881
10188
  set url(value: string);
10189
+ get dokdo(): number;
10190
+ set dokdo(value: number);
10191
+ get showDummies(): boolean;
10192
+ set showDummies(value: boolean);
10193
+ get insets(): string;
10194
+ set insets(value: string);
9882
10195
  get padding(): number;
9883
10196
  set padding(value: number);
9884
10197
  get exclude(): string;
@@ -9888,29 +10201,65 @@ declare class RealMapChartMap extends ChartObject$1<RealMapItem, RealMapChartMap
9888
10201
  getChartConfig(context: PrintContext): RealMapChartMapConfig;
9889
10202
  getSaveLabel(): string;
9890
10203
  protected _doDefaultInit(): void;
9891
- protected _getEditProps(): {
10204
+ protected _getEditProps(): ({
9892
10205
  name: string;
9893
10206
  category: PropCategory;
9894
10207
  type: typeof ListableProperty;
9895
10208
  indented: boolean;
9896
10209
  default: any;
9897
- }[];
10210
+ domain?: undefined;
10211
+ } | {
10212
+ name: string;
10213
+ category: PropCategory;
10214
+ type: typeof NumberProperty;
10215
+ indented?: undefined;
10216
+ default?: undefined;
10217
+ domain?: undefined;
10218
+ } | {
10219
+ name: string;
10220
+ category: PropCategory;
10221
+ type: typeof StringProperty;
10222
+ domain: boolean[];
10223
+ default: boolean;
10224
+ indented?: undefined;
10225
+ } | {
10226
+ name: string;
10227
+ category: PropCategory;
10228
+ type: typeof StringProperty;
10229
+ default: string;
10230
+ indented?: undefined;
10231
+ domain?: undefined;
10232
+ })[];
9898
10233
  protected _doLoad(loader: IReportLoader, source: ReportSource): void;
9899
10234
  protected _doSave(target: ReportTarget): void;
9900
10235
  getPropDomain(prop: IPropInfo): any[];
9901
10236
  private $_getExclude;
10237
+ private $_getInsets;
9902
10238
  }
9903
10239
 
9904
10240
  declare type RealMapChartMapConfig = MapSource;
9905
10241
 
9906
10242
  declare class RealMapChartMapSeries extends RealMapSeries<RealMapChartMapSeriesConfig> {
9907
- static readonly PROP_POINT_COLOR = "pointColors";
10243
+ static readonly PROP_USE_MAP_DATA = "useMapData";
10244
+ static readonly PROP_TOOLTIP_TEXT = "tooltipText";
10245
+ static readonly PROP_COLOR = "color";
10246
+ static readonly PROP_DUMMY_STYLE_FILL = "dummyFill";
10247
+ static readonly PROP_DUMMY_STYLE_STROKE = "dummyStroke";
10248
+ static readonly PROP_DUMMY_STYLE_STROKE_WIDTH = "dummyStrokeWidth";
9908
10249
  static readonly PROPINFOS: IPropInfo[];
9909
- private _pointColors;
9910
- private _pointColorsCallback;
10250
+ private _useMapData;
10251
+ private _color;
10252
+ private _tooltipText;
10253
+ private _dummyStrokeWidth;
9911
10254
  constructor(collection: RealMapChartSeriesCollection);
9912
- get pointColors(): string;
9913
- set pointColors(value: string);
10255
+ get useMapData(): boolean;
10256
+ set useMapData(value: boolean);
10257
+ get color(): string;
10258
+ set color(value: string);
10259
+ get tooltipText(): string;
10260
+ set tooltipText(value: string);
10261
+ get dummyStrokeWidth(): number;
10262
+ set dummyStrokeWidth(value: number);
9914
10263
  getChartConfig(context: PrintContext): RealMapChartMapSeriesConfig;
9915
10264
  protected _getEditProps(): IPropInfo[];
9916
10265
  protected _doLoad(loader: IReportLoader, source: ReportSource): void;
@@ -9919,7 +10268,9 @@ declare class RealMapChartMapSeries extends RealMapSeries<RealMapChartMapSeriesC
9919
10268
 
9920
10269
  declare interface RealMapChartMapSeriesConfig extends SeriesConfig {
9921
10270
  type: 'map';
9922
- pointColors: Function | null;
10271
+ useMapData?: boolean;
10272
+ tooltipText?: string;
10273
+ dummyStyle?: SeriesConfig['style'];
9923
10274
  }
9924
10275
 
9925
10276
  declare class RealMapChartMarquee extends EditMarquee<RealMapItemElement> {
@@ -9949,13 +10300,70 @@ declare class RealMapChartMarquee extends EditMarquee<RealMapItemElement> {
9949
10300
  private $_removeSeries;
9950
10301
  }
9951
10302
 
10303
+ declare class RealMapChartPieSeries extends RealMapSeries<RealMapChartPieSeriesConfig> {
10304
+ static readonly PROP_RADIUS = "radius";
10305
+ static readonly PROP_START_ANGLE = "startAngle";
10306
+ static readonly PROP_TOTAL_ANGLE = "totalAngle";
10307
+ static readonly PROP_CLOCKWISE = "clockwise";
10308
+ static readonly PROP_COLORS = "colors";
10309
+ static readonly PROP_LEGEND_BY_CATEGORY = "legendByCategory";
10310
+ static readonly PROP_CATEGORIES = "categories";
10311
+ static readonly PROP_TOOLTIP_TEXT = "tooltipText";
10312
+ static readonly PROPINFOS: IPropInfo[];
10313
+ private _radius;
10314
+ private _startAngle;
10315
+ private _totalAngle;
10316
+ private _clockwise;
10317
+ private _colors;
10318
+ private _legendByCategory;
10319
+ private _tooltipText;
10320
+ private _categories;
10321
+ constructor(collection: RealMapChartSeriesCollection);
10322
+ get radius(): string;
10323
+ set radius(value: string);
10324
+ get startAngle(): number;
10325
+ set startAngle(value: number);
10326
+ get totalAngle(): number;
10327
+ set totalAngle(value: number);
10328
+ get clockwise(): boolean;
10329
+ set clockwise(value: boolean);
10330
+ get colors(): string;
10331
+ set colors(value: string);
10332
+ get legendByCategory(): boolean;
10333
+ set legendByCategory(value: boolean);
10334
+ get categories(): MapChartCategoryCollection;
10335
+ get tooltipText(): string;
10336
+ set tooltipText(value: string);
10337
+ getChartConfig(context: PrintContext): RealMapChartPieSeriesConfig;
10338
+ protected _getEditProps(): IPropInfo[];
10339
+ protected _doLoad(loader: IReportLoader, source: {
10340
+ categories: object;
10341
+ }): void;
10342
+ protected _doSave(target: ReportTarget): void;
10343
+ get outlineItems(): IOutlineSource[];
10344
+ get outlineExpandable(): boolean;
10345
+ getPopupPropLabel(prop: string): string;
10346
+ protected getDataValues(): unknown[];
10347
+ private $_getCategoriesForChart;
10348
+ private $_getColors;
10349
+ }
10350
+
9952
10351
  declare interface RealMapChartPieSeriesConfig extends SeriesConfig {
9953
10352
  type: 'pie';
9954
10353
  radius?: string;
9955
10354
  startAngle?: number;
9956
10355
  totalAngle?: number;
9957
10356
  clockwise?: boolean;
9958
- categories?: PieCategory[];
10357
+ legendByCategory?: boolean;
10358
+ categories?: MapChartCategory$1[];
10359
+ tooltipText?: string;
10360
+ }
10361
+
10362
+ declare interface RealMapChartPointSeriesConfig extends SeriesConfig {
10363
+ type: 'point';
10364
+ radius?: number;
10365
+ shape?: PointShape;
10366
+ tooltipText?: string;
9959
10367
  }
9960
10368
 
9961
10369
  declare class RealMapChartSeriesCollection extends ChartSeriesCollection$1<RealMapItem, RealMapChartSeriesConfig> {
@@ -9964,9 +10372,9 @@ declare class RealMapChartSeriesCollection extends ChartSeriesCollection$1<RealM
9964
10372
  protected _seriesChanged(): void;
9965
10373
  }
9966
10374
 
9967
- declare type RealMapChartSeriesConfig = RealMapChartMapSeriesConfig | RealMapChartPieSeriesConfig;
10375
+ declare type RealMapChartSeriesConfig = RealMapChartMapSeriesConfig | RealMapChartPieSeriesConfig | RealMapChartPointSeriesConfig | RealMapChartBarSeriesConfig;
9968
10376
 
9969
- declare type RealMapChartSeriesType = 'map' | 'pie';
10377
+ declare type RealMapChartSeriesType = 'map' | 'pie' | 'point' | 'bar';
9970
10378
 
9971
10379
  declare class RealMapChartSubTitle extends ChartTextObject$1<RealMapItem, RealMapChartTitleConfig> {
9972
10380
  static readonly PROP_ALIGN = "align";
@@ -10037,6 +10445,7 @@ declare interface RealMapConfig {
10037
10445
  zoomPanel: {
10038
10446
  visible: false;
10039
10447
  };
10448
+ legend: RealMapChartLegendConfig;
10040
10449
  }
10041
10450
 
10042
10451
  declare class RealMapItem extends ChartItem<RealMapConfig> {
@@ -10046,6 +10455,7 @@ declare class RealMapItem extends ChartItem<RealMapConfig> {
10046
10455
  static readonly PROP_BODY = "body";
10047
10456
  static readonly PROP_CREDITS = "credits";
10048
10457
  static readonly PROP_COLOR_SCALE = "colorScale";
10458
+ static readonly PROP_LEGEND = "legend";
10049
10459
  static readonly PROP_SERIES_COLLECTION = "serieCollection";
10050
10460
  static readonly PROP_GRID = "grid";
10051
10461
  static readonly PROPINFOS: ({
@@ -10071,16 +10481,20 @@ declare class RealMapItem extends ChartItem<RealMapConfig> {
10071
10481
  private _body;
10072
10482
  private _credits;
10073
10483
  private _colorScale;
10484
+ private _legend;
10074
10485
  private _map;
10075
10486
  private _seriesCollection;
10076
10487
  private _grid;
10077
10488
  constructor(name: string);
10489
+ get outlineLabel(): string;
10490
+ get outlineItems(): IOutlineSource[];
10078
10491
  get title(): RealMapChartTitle;
10079
10492
  get subtitle(): RealMapChartSubTitle;
10080
10493
  get body(): RealMapChartBody;
10081
10494
  get credits(): RealMapChartCredits;
10082
10495
  get map(): RealMapChartMap;
10083
10496
  get colorScale(): RealMapChartColorScale;
10497
+ get legend(): RealMapChartLegend;
10084
10498
  get seriesCollection(): RealMapChartSeriesCollection;
10085
10499
  get grid(): RealMapChartAxisGrid;
10086
10500
  getChartConfig(context: PrintContext): RealMapConfig;
@@ -10119,11 +10533,20 @@ declare abstract class RealMapSeries<C = RealMapChartSeriesConfig> extends Chart
10119
10533
  static readonly PROP_NAME = "name";
10120
10534
  static readonly PROP_USE_DATA_URL = "dataUrl";
10121
10535
  static readonly PROP_USE_MAP_KEYS = "mapKeys";
10536
+ static readonly PROP_LEGEND = "legend";
10537
+ static readonly PROP_POINT_COLOR = "pointColors";
10538
+ static readonly PROP_STYLE_CALLBACK = "styleCallback";
10539
+ static readonly STYLES: (keyof RealMapChartSvgStyles)[];
10122
10540
  static readonly PROPINFOS: IPropInfo[];
10123
10541
  private _name;
10124
10542
  private _type;
10125
10543
  private _dataUrl;
10126
10544
  private _mapKeys;
10545
+ private _legend;
10546
+ private _pointColors;
10547
+ private _pointColorsCallback;
10548
+ private _styleCallback;
10549
+ private _styleCallbackFn;
10127
10550
  get name(): string;
10128
10551
  set name(value: string);
10129
10552
  get type(): string;
@@ -10132,6 +10555,12 @@ declare abstract class RealMapSeries<C = RealMapChartSeriesConfig> extends Chart
10132
10555
  set dataUrl(value: string);
10133
10556
  get mapKeys(): string;
10134
10557
  set mapKeys(value: string);
10558
+ get legend(): string;
10559
+ set legend(value: string);
10560
+ get pointColors(): string;
10561
+ set pointColors(value: string);
10562
+ get styleCallback(): string;
10563
+ set styleCallback(value: string);
10135
10564
  isUsed(data: IReportData): boolean;
10136
10565
  protected getDataValues(): unknown[];
10137
10566
  protected _getEditProps(): IPropInfo[];
@@ -10140,6 +10569,8 @@ declare abstract class RealMapSeries<C = RealMapChartSeriesConfig> extends Chart
10140
10569
  protected _getMapKeys(): string[];
10141
10570
  protected _parseArrayLikeString(value: string): string[];
10142
10571
  protected _parseData(data: unknown[]): object[];
10572
+ getChartConfig(context: PrintContext): C;
10573
+ protected _getStyleProps(): typeof REALMAP_SERIES_STYLE_NAMES;
10143
10574
  }
10144
10575
 
10145
10576
  /* Excluded from this release type: Rectangle */
@@ -10173,6 +10604,9 @@ declare class Report_2 extends ReportBase<ReportPage> {
10173
10604
  addHichartSeries(chart: HichartItem, seriesType: string): HichartSeries;
10174
10605
  addHichartPlotLine(axis: HichartAxis, config?: object): HichartAxisPlotLine;
10175
10606
  addHichartPlotBand(axis: HichartAxis, config?: object): HichartAxisPlotBand;
10607
+ addMapchartCategory(series: CategorizedSeries, config?: object): MapChartCategory;
10608
+ addMapchartLegend(item: RealMapItem, config?: object): LegendItem;
10609
+ removeMapchartLegend(legend: LegendItem): LegendItem;
10176
10610
  addRealMapSeries(collection: RealMapChartSeriesCollection, type: RealMapChartSeriesType): void;
10177
10611
  removeRealMapSeries(collection: RealMapChartSeriesCollection, index: number): void;
10178
10612
  /**
@@ -10454,8 +10888,8 @@ declare abstract class ReportBase<T extends ReportPageBase = ReportPageBase> ext
10454
10888
  }[];
10455
10889
  forceDirty(): void;
10456
10890
  setItemProperty(item: ReportPageItem, prop: string, value: any): void;
10457
- setItemProperties(item: ReportPageItem, props: ConfigObject): void;
10458
- setItemsProperties(items: ReportItem[], props: ConfigObject): void;
10891
+ setItemProperties(item: ReportPageItem, props: ConfigObject$2): void;
10892
+ setItemsProperties(items: ReportItem[], props: ConfigObject$2): void;
10459
10893
  resetItemProperty(item: ReportPageItem, prop: IPropInfo): boolean;
10460
10894
  setItemsProperty(items: ReportPageItem[], prop: string, value: any): void;
10461
10895
  setItemStyle(item: ReportPageItem, style: string, value: any): void;
@@ -11865,8 +12299,8 @@ declare abstract class ReportItem extends ReportPageItem {
11865
12299
  getProperty(prop: string): any;
11866
12300
  setProperty(prop: string, value: any): void;
11867
12301
  setItemsProperty(sources: IPropertySource[], prop: string, value: any): void;
11868
- getProperties(props: string[] | ConfigObject): ConfigObject;
11869
- setProperties(props: ConfigObject): void;
12302
+ getProperties(props: string[] | ConfigObject$2): ConfigObject$2;
12303
+ setProperties(props: ConfigObject$2): void;
11870
12304
  getStyleProperty(prop: string): any;
11871
12305
  setStyleProperty(prop: string, value: any): void;
11872
12306
  getSubStyleProperty(prop: string, style: string): any;
@@ -13574,6 +14008,9 @@ declare interface SeriesConfig extends BaseConfig {
13574
14008
  mapKeys?: string | string[];
13575
14009
  dataUrl?: string;
13576
14010
  valueField?: string;
14011
+ pointColors?: Function | null;
14012
+ styleCallback?: Function | null;
14013
+ legend?: string;
13577
14014
  }
13578
14015
 
13579
14016
  declare type ServerReportGroupSource = {
@@ -14332,8 +14769,8 @@ declare class SimpleBandRowGroupCollection extends ReportItemCollection<SimpleBa
14332
14769
  save(target: any): void;
14333
14770
  get(index: number): SimpleBandRowGroup;
14334
14771
  indexOf(field: SimpleBandRowGroup): number;
14335
- add(group: SimpleBandRowGroup | ConfigObject, index?: number): SimpleBandRowGroup;
14336
- addAll(groups: (SimpleBandRowGroup | ConfigObject)[], index?: number): boolean;
14772
+ add(group: SimpleBandRowGroup | ConfigObject$2, index?: number): SimpleBandRowGroup;
14773
+ addAll(groups: (SimpleBandRowGroup | ConfigObject$2)[], index?: number): boolean;
14337
14774
  removeAt(index: number): boolean;
14338
14775
  remove(group: SimpleBandRowGroup): boolean;
14339
14776
  clear(): boolean;
@@ -15089,8 +15526,8 @@ declare class TableBandRowGroupCollection extends ReportItemCollection<TableBand
15089
15526
  save(target: any): void;
15090
15527
  get(index: number): TableBandRowGroup;
15091
15528
  indexOf(group: TableBandRowGroup): number;
15092
- add(group: TableBandRowGroup | ConfigObject, index?: number): TableBandRowGroup;
15093
- addAll(groups: (TableBandRowGroup | ConfigObject)[], index?: number): boolean;
15529
+ add(group: TableBandRowGroup | ConfigObject$2, index?: number): TableBandRowGroup;
15530
+ addAll(groups: (TableBandRowGroup | ConfigObject$2)[], index?: number): boolean;
15094
15531
  removeAt(index: number): boolean;
15095
15532
  remove(group: TableBandRowGroup): boolean;
15096
15533
  clear(): boolean;
@@ -15519,7 +15956,7 @@ declare abstract class TableColumnCollectionBase<T extends ReportGroupItem, C ex
15519
15956
  * 너비 합계가 부모 너비보다 클 수 있다.
15520
15957
  */
15521
15958
  getWidths(): DimensionCollection;
15522
- add(column: C | ConfigObject, index?: number): C;
15959
+ add(column: C | ConfigObject$2, index?: number): C;
15523
15960
  /* Excluded from this release type: remove */
15524
15961
  /* Excluded from this release type: clear */
15525
15962
  /* Excluded from this release type: move */
@@ -15967,11 +16404,9 @@ declare class TextItem extends TextItemBase {
15967
16404
  static readonly PROP_MERGE_RULE = "mergeRule";
15968
16405
  static readonly PROP_RICH = "rich";
15969
16406
  static readonly PROP_ON_GET_COL_SPAN = "onGetColSpan";
15970
- static readonly PROP_AUTO_SHRINK = "autoShrink";
15971
16407
  static readonly PROPINFOS: IPropInfo[];
15972
16408
  static readonly $_ctor: string;
15973
16409
  static readonly ITEM_TYPE = "Text";
15974
- private _autoShrink;
15975
16410
  private _text;
15976
16411
  private _wordBreak;
15977
16412
  private _rich;
@@ -16033,13 +16468,6 @@ declare class TextItem extends TextItemBase {
16033
16468
  */
16034
16469
  get colSpanCallback(): ReportItemColSpanCallback;
16035
16470
  set conSpanCallback(value: ReportItemColSpanCallback);
16036
- /**
16037
- * 자동 폰트 사이즈 조정.
16038
- * 설정 시 텍스트가 설정된 사이즈를 초과하는 경우
16039
- * 자동적으로 사이즈를 조정하여 모든 텍스트가 보여지도록 하는 설정입니다.
16040
- */
16041
- get autoShrink(): boolean;
16042
- set autoShrink(value: boolean);
16043
16471
  getDesignText2(system: boolean): string;
16044
16472
  /**
16045
16473
  * value 값은 onGetValueCallback에서 계산된 값이다.
@@ -16069,6 +16497,7 @@ declare class TextItem extends TextItemBase {
16069
16497
  declare abstract class TextItemBase extends ReportItem {
16070
16498
  static readonly PROP_WRAP = "wrap";
16071
16499
  static readonly PROP_MULTI_LINE = "multiLine";
16500
+ static readonly PROP_AUTO_SHRINK = "autoShrink";
16072
16501
  static readonly PROP_BOOLEAN_FORMAT = "booleanFormat";
16073
16502
  static readonly PROP_NUMBER_FORMAT = "numberFormat";
16074
16503
  static readonly PROP_DATE_FORMAT = "dateFormat";
@@ -16085,6 +16514,7 @@ declare abstract class TextItemBase extends ReportItem {
16085
16514
  private _textFormat;
16086
16515
  private _prefix;
16087
16516
  private _suffix;
16517
+ private _autoShrink;
16088
16518
  /**
16089
16519
  * wrap
16090
16520
  */
@@ -16133,6 +16563,13 @@ declare abstract class TextItemBase extends ReportItem {
16133
16563
  */
16134
16564
  get suffix(): string;
16135
16565
  set suffix(value: string);
16566
+ /**
16567
+ * 자동 폰트 사이즈 조정.
16568
+ * 설정 시 텍스트가 설정된 사이즈를 초과하는 경우
16569
+ * 자동적으로 사이즈를 조정하여 모든 텍스트가 보여지도록 하는 설정입니다.
16570
+ */
16571
+ get autoShrink(): boolean;
16572
+ set autoShrink(value: boolean);
16136
16573
  getText(v: any): string;
16137
16574
  getDesignText2(system: boolean): string;
16138
16575
  protected _doDefaultInit(loader: IReportLoader, parent: ReportGroupItem, hintWidth: number, hintHeight: number): void;