realchart 0.9.31 → 0.9.32

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.
package/dist/index.d.ts CHANGED
@@ -384,7 +384,7 @@ declare class RcElement extends RcObject {
384
384
  setColor(color: string): void;
385
385
  setFill(color: string): void;
386
386
  setStroke(color: string): void;
387
- setTransparent(): void;
387
+ setTransparent(important: boolean): void;
388
388
  textAlign(): Align;
389
389
  setData(data: string, value?: string): void;
390
390
  unsetData(data: string): void;
@@ -747,6 +747,7 @@ declare class DataPoint {
747
747
  getTooltipPos(): IPoint;
748
748
  updateValue(value: number, animation: RcAnimation): void;
749
749
  cleanValue(): void;
750
+ getTooltip(param: string): any;
750
751
  protected _assignTo(proxy: any): any;
751
752
  protected _readArray(series: ISeries, v: any[]): void;
752
753
  protected _readObject(series: ISeries, v: any): void;
@@ -929,6 +930,7 @@ interface ISeries extends IPlottingItem {
929
930
  yField: string | number | Function;
930
931
  _xFielder: (src: any) => any;
931
932
  _yFielder: (src: any) => any;
933
+ _zFielder: (src: any) => any;
932
934
  _colorFielder: (src: any) => any;
933
935
  colorField: string | number;
934
936
  color: string;
@@ -972,6 +974,7 @@ declare abstract class Series extends ChartItem implements ISeries, IChartDataLi
972
974
  _yAxisObj: IAxis;
973
975
  _xFielder: (src: any) => any;
974
976
  _yFielder: (src: any) => any;
977
+ _zFielder: (src: any) => any;
975
978
  _colorFielder: (src: any) => any;
976
979
  _dataDirty: boolean;
977
980
  _cdata: ChartData;
@@ -1017,6 +1020,7 @@ declare abstract class Series extends ChartItem implements ISeries, IChartDataLi
1017
1020
  yAxis: string | number;
1018
1021
  xField: string | number;
1019
1022
  yField: string | number | Function;
1023
+ zField: string | number | Function;
1020
1024
  colorField: string;
1021
1025
  get data(): any;
1022
1026
  set data(value: any);
@@ -1104,7 +1108,7 @@ declare abstract class Series extends ChartItem implements ISeries, IChartDataLi
1104
1108
  protected _createLegendMarker(doc: Document, size: number): RcElement;
1105
1109
  _referOtherSeries(series: Series): boolean;
1106
1110
  _colorByPoint(): boolean;
1107
- protected _createFilder(f: any): (v: any) => any;
1111
+ protected _createFielder(f: any): (v: any) => any;
1108
1112
  protected _createFielders(): void;
1109
1113
  protected _doLoad(src: any): void;
1110
1114
  protected _doLoadData(src: any): any[];