stimulsoft-dashboards-js-react 2025.3.2 → 2025.3.3

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.
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  Stimulsoft.Reports.JS
3
- Version: 2025.3.2
4
- Build date: 2025.07.17
3
+ Version: 2025.3.3
4
+ Build date: 2025.07.28
5
5
  License: https://www.stimulsoft.com/en/licensing/reports
6
6
  */
7
7
  export namespace Stimulsoft.System {
@@ -2899,13 +2899,8 @@ export namespace Stimulsoft.System.Drawing {
2899
2899
  is(type: any): this is Color;
2900
2900
  is2(type: any): boolean;
2901
2901
  as(type: any): this;
2902
- getType(): typeof Color;
2903
2902
  over(other: Color): Color;
2904
2903
  }
2905
- interface Color {
2906
- ss: Color;
2907
- stimulsoft: () => Color;
2908
- }
2909
2904
  }
2910
2905
  export namespace Stimulsoft.System.Drawing {
2911
2906
  class ColorTranslator {
@@ -28530,6 +28525,16 @@ export namespace Stimulsoft.Report.Components {
28530
28525
  constructor(rect?: RectangleD);
28531
28526
  }
28532
28527
  }
28528
+ export namespace Stimulsoft.Report.Components {
28529
+ import StiMeta = Stimulsoft.Base.Meta.StiMeta;
28530
+ import RectangleD = Stimulsoft.System.Drawing.Rectangle;
28531
+ class StiWebContent extends StiComponent {
28532
+ meta(): StiMeta[];
28533
+ embedCode: string;
28534
+ url: string;
28535
+ constructor(rect?: RectangleD);
28536
+ }
28537
+ }
28533
28538
  export namespace Stimulsoft.Report.Components.Table {
28534
28539
  let IStiTableComponent: System.Interface<IStiTableComponent>;
28535
28540
  interface IStiTableComponent {
@@ -30209,6 +30214,10 @@ export namespace Stimulsoft.Report.Dashboard {
30209
30214
  addConstantLine(): any;
30210
30215
  removeConstantLine(index: number): any;
30211
30216
  moveConstantLine(fromIndex: number, toIndex: number): any;
30217
+ fetchStrips(): List<IStiChartStrips>;
30218
+ addStrip(): any;
30219
+ removeStrip(index: number): any;
30220
+ moveStrip(fromIndex: number, toIndex: number): any;
30212
30221
  addTrendLines(keyValueMeter: string, type: StiChartTrendLineType, lineColor: Color, lineStyle: StiPenStyle, lineWidth: number): any;
30213
30222
  fetchTrendLines(): List<IStiChartTrendLine>;
30214
30223
  clearTrendLines(): any;
@@ -30285,6 +30294,21 @@ export namespace Stimulsoft.Report.Dashboard {
30285
30294
  position: StiChartLabelsPosition;
30286
30295
  }
30287
30296
  }
30297
+ export namespace Stimulsoft.Report.Dashboard {
30298
+ import Color = Stimulsoft.System.Drawing.Color;
30299
+ import StiBrush = Stimulsoft.Base.Drawing.StiBrush;
30300
+ import StiStrips_StiOrientation = Stimulsoft.Report.Chart.StiStrips_StiOrientation;
30301
+ let IStiChartStrips: System.Interface<IStiChartStrips>;
30302
+ let ImplementsIStiChartStrips: any[];
30303
+ interface IStiChartStrips {
30304
+ text: string;
30305
+ titleColor: Color;
30306
+ stripBrush: StiBrush;
30307
+ orientation: StiStrips_StiOrientation;
30308
+ minValue: string;
30309
+ maxValue: string;
30310
+ }
30311
+ }
30288
30312
  export namespace Stimulsoft.Report.Dashboard {
30289
30313
  import Color = Stimulsoft.System.Drawing.Color;
30290
30314
  import StiPenStyle = Stimulsoft.Base.Drawing.StiPenStyle;
@@ -39154,7 +39178,8 @@ export namespace Stimulsoft.Report.Maps.Gis {
39154
39178
  lineSizes: any[];
39155
39179
  icon: StiFontIcons;
39156
39180
  iconColor: Color;
39157
- constructor(icon: StiFontIcons, iconColor: Color);
39181
+ zoom: number;
39182
+ constructor(icon: StiFontIcons, iconColor: Color, zoom: number);
39158
39183
  }
39159
39184
  }
39160
39185
  export namespace Stimulsoft.Report.Maps.Gis {
@@ -39163,6 +39188,7 @@ export namespace Stimulsoft.Report.Maps.Gis {
39163
39188
  private viewData;
39164
39189
  private points;
39165
39190
  private size;
39191
+ private zoom;
39166
39192
  isComplete: boolean;
39167
39193
  constructor(data: StiGisMapData);
39168
39194
  runAndWait(): Promise<void>;
@@ -39181,7 +39207,7 @@ export namespace Stimulsoft.Report.Maps.Gis {
39181
39207
  class StiOnlineMapProvider {
39182
39208
  static getImage(size: Size, map: {
39183
39209
  mapImage: string;
39184
- }, userBingKey: string, pushPins?: Point[]): Promise<string>;
39210
+ }, userBingKey: string, pushPins: Point[], onePointZoom: number): Promise<string>;
39185
39211
  }
39186
39212
  }
39187
39213
  export namespace Stimulsoft.Report.Painters {
@@ -39293,7 +39319,6 @@ export namespace Stimulsoft.Report.Maps {
39293
39319
  }
39294
39320
  }
39295
39321
  export namespace Stimulsoft.Report.Maps {
39296
- import Point = Stimulsoft.System.Drawing.Point;
39297
39322
  import Font = Stimulsoft.System.Drawing.Font;
39298
39323
  import StiFormatService = Stimulsoft.Report.Components.TextFormats.StiFormatService;
39299
39324
  import StiMeta = Stimulsoft.Base.Meta.StiMeta;
@@ -39333,7 +39358,8 @@ export namespace Stimulsoft.Report.Maps {
39333
39358
  set businessObjectGuid(value: string);
39334
39359
  countData: number;
39335
39360
  userBingKey: string;
39336
- pushPins: Point[];
39361
+ pushPins: string;
39362
+ onePointZoom: number;
39337
39363
  first(): void;
39338
39364
  prior(): void;
39339
39365
  next(): void;
@@ -39635,6 +39661,7 @@ export namespace Stimulsoft.Report.Export {
39635
39661
  private static writeText;
39636
39662
  static getStyleString(font: Font, textColor: Color): string;
39637
39663
  private static writeImage;
39664
+ static writeWebContent(writer: XmlTextWriter, svgData: StiSvgData): void;
39638
39665
  static writeBarCode(writer: XmlTextWriter, svgData: StiSvgData): void;
39639
39666
  static writeShape(writer: XmlTextWriter, svgData: StiSvgData, xmlIndentation: number, useClip: boolean, guids: Hashtable): void;
39640
39667
  static writeFillBrush(writer: XmlTextWriter, brush: Color | StiBrush, rect: RectangleD): string;
@@ -41292,6 +41319,8 @@ export namespace Stimulsoft.Report {
41292
41319
  static format(value: number, reportCulture?: string): string;
41293
41320
  static format2(value: number, outPostfix: any, reportCulture?: string): number;
41294
41321
  static format3(value: number, outPostfix: any, decimalDigits: any, totalNumberCapacity: number, reportCulture?: string): number;
41322
+ static simpleAbbreviateNumber(number: number): string;
41323
+ static getPostfixes(reportCulture?: string): string[];
41295
41324
  }
41296
41325
  }
41297
41326
  export namespace Stimulsoft.Report.Helpers {
@@ -46131,6 +46160,8 @@ export namespace Stimulsoft.Report.Chart {
46131
46160
  getDividerTopX(): number;
46132
46161
  getDividerY(): number;
46133
46162
  getDividerRightY(): number;
46163
+ private getRightActualMin;
46164
+ private getRightActualMax;
46134
46165
  valuesCount: number;
46135
46166
  get scrollDistanceX(): number;
46136
46167
  get scrollDistanceY(): number;
@@ -46146,6 +46177,8 @@ export namespace Stimulsoft.Report.Chart {
46146
46177
  blockScrollValueY: boolean;
46147
46178
  scrollValueX: number;
46148
46179
  scrollValueY: number;
46180
+ rightActualMin: number;
46181
+ rightActualMax: number;
46149
46182
  private _scrollDpiX;
46150
46183
  get scrollDpiX(): number;
46151
46184
  private _scrollDpiY;
@@ -61908,6 +61941,7 @@ export namespace Stimulsoft.Dashboard.Components.Chart {
61908
61941
  import IStiGlobalizationProvider = Stimulsoft.Report.IStiGlobalizationProvider;
61909
61942
  import IStiDrillDownElement = Stimulsoft.Data.Engine.IStiDrillDownElement;
61910
61943
  import IStiChartConstantLines = Stimulsoft.Report.Dashboard.IStiChartConstantLines;
61944
+ import IStiChartStrips = Stimulsoft.Report.Dashboard.IStiChartStrips;
61911
61945
  import IStiChartElementCondition = Stimulsoft.Report.Dashboard.IStiChartElementCondition;
61912
61946
  import StiPenStyle = Stimulsoft.Base.Drawing.StiPenStyle;
61913
61947
  import StiFontIcons = Stimulsoft.Report.Helpers.StiFontIcons;
@@ -62033,6 +62067,10 @@ export namespace Stimulsoft.Dashboard.Components.Chart {
62033
62067
  addConstantLine(): void;
62034
62068
  removeConstantLine(index: number): void;
62035
62069
  moveConstantLine(fromIndex: number, toIndex: number): void;
62070
+ fetchStrips(): List<IStiChartStrips>;
62071
+ addStrip(): void;
62072
+ removeStrip(index: number): void;
62073
+ moveStrip(fromIndex: number, toIndex: number): void;
62036
62074
  addTrendLines(keyValueMeter: string, type: StiChartTrendLineType, lineColor: Color, lineStyle: StiPenStyle, lineWidth: number): void;
62037
62075
  fetchTrendLines(): List<IStiChartTrendLine>;
62038
62076
  clearTrendLines(): void;
@@ -62117,6 +62155,7 @@ export namespace Stimulsoft.Dashboard.Components.Chart {
62117
62155
  private static getValueFormatDefault;
62118
62156
  trendLines: List<StiChartTrendLine>;
62119
62157
  constantLines: List<StiChartConstantLines>;
62158
+ strips: List<StiChartStrips>;
62120
62159
  options3D: Sti3dOptions;
62121
62160
  chartConditions: List<StiChartElementCondition>;
62122
62161
  marker: StiChartMarker;
@@ -62283,6 +62322,36 @@ export namespace Stimulsoft.Dashboard.Components.Chart {
62283
62322
  constructor(axisPosition?: StiChartLabelsPosition, piePosition?: StiChartLabelsPosition, doughnutPosition?: StiChartLabelsPosition, funnelPosition?: StiChartLabelsPosition, treemapPosition?: StiChartLabelsPosition, heatmapPosition?: StiChartLabelsPosition, radarPosition?: StiChartLabelsPosition, clusteredColumn3dPosition?: StiChartLabelsPosition, style?: StiChartLabelsStyle, font?: Font, foreColor?: Color, textBefore?: string, textAfter?: string, autoRotate?: boolean, width?: number, wordWrap?: boolean);
62284
62323
  }
62285
62324
  }
62325
+ export namespace Stimulsoft.Dashboard.Components.Chart {
62326
+ import StiMeta = Stimulsoft.Base.Meta.StiMeta;
62327
+ import StiJsonSaveMode = Stimulsoft.Base.StiJsonSaveMode;
62328
+ import StiJson = Stimulsoft.Base.StiJson;
62329
+ import Color = Stimulsoft.System.Drawing.Color;
62330
+ import StiBrush = Stimulsoft.Base.Drawing.StiBrush;
62331
+ import ICloneable = Stimulsoft.System.ICloneable;
62332
+ import XmlNode = Stimulsoft.System.Xml.XmlNode;
62333
+ import IStiJsonReportObject = Stimulsoft.Base.JsonReportObject.IStiJsonReportObject;
62334
+ import IStiChartStrips = Stimulsoft.Report.Dashboard.IStiChartStrips;
62335
+ import StiStrips_StiOrientation = Stimulsoft.Report.Chart.StiStrips_StiOrientation;
62336
+ class StiChartStrips implements ICloneable, IStiChartStrips, IStiJsonReportObject {
62337
+ implements(): any[];
62338
+ protected _hash: StiMeta[];
62339
+ meta(): StiMeta[];
62340
+ saveToJsonObject(mode: StiJsonSaveMode): StiJson;
62341
+ loadFromJsonObject(j: StiJson): void;
62342
+ loadFromXml(xn: XmlNode): void;
62343
+ clone(): StiChartStrips;
62344
+ text: string;
62345
+ titleColor: Color;
62346
+ stripBrush: StiBrush;
62347
+ orientation: StiStrips_StiOrientation;
62348
+ minValue: string;
62349
+ maxValue: string;
62350
+ static createFromJson(json: StiJson): StiChartStrips;
62351
+ static createFromXml(xmlNode: XmlNode): StiChartStrips;
62352
+ constructor(text?: string, minValue?: string, maxValue?: string, titleColor?: Color, stripBrush?: StiBrush, orientation?: StiStrips_StiOrientation);
62353
+ }
62354
+ }
62286
62355
  export namespace Stimulsoft.Dashboard.Components.Chart {
62287
62356
  import StiJson = Stimulsoft.Base.StiJson;
62288
62357
  class StiChartUserViewStatesHelper {
@@ -65746,6 +65815,7 @@ export namespace Stimulsoft.Dashboard.Render {
65746
65815
  private static renderSeriesConditions;
65747
65816
  private static getConditionResult;
65748
65817
  private static renderConstantLines;
65818
+ private static renderStrips;
65749
65819
  protected static renderTrendLines(series: IStiSeries, element: StiChartElement, valueMeter: StiMeter): void;
65750
65820
  private static getTrendLine;
65751
65821
  private renderSeriesLabels;
@@ -67614,6 +67684,7 @@ export namespace Stimulsoft.Viewer {
67614
67684
  backgroundColor: Color;
67615
67685
  pageBorderColor: Color;
67616
67686
  allowSelectionCurrentPage: boolean;
67687
+ allowLoadingFilterItemsOnScroll: boolean;
67617
67688
  rightToLeft: boolean;
67618
67689
  fullScreenMode: boolean;
67619
67690
  scrollbarsMode: boolean;
@@ -69927,6 +69998,11 @@ export namespace Stimulsoft.Designer.Dashboards {
69927
69998
  private addConstantLine;
69928
69999
  private removeConstantLine;
69929
70000
  private moveConstantLine;
70001
+ static getStrips(chartElement: IStiChartElement): any[];
70002
+ private static getStripsProperties;
70003
+ private addStrip;
70004
+ private removeStrip;
70005
+ private moveStrip;
69930
70006
  constructor(chartElement: IStiChartElement);
69931
70007
  }
69932
70008
  }