igniteui-angular-charts
Version:
Ignite UI Angular charting components for building rich data visualizations for modern web apps.
310 lines (307 loc) • 11.2 kB
JavaScript
/*
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
https://www.infragistics.com/legal/license/igultimate-la
https://www.infragistics.com/legal/license/igultimate-eula
GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
*/
import { Component, Input } from '@angular/core';
import { IgxAxisComponent } from './igx-axis-component';
import { toPoint, fromRect, ensureBool, NamePatcher } from "igniteui-angular-core";
import * as i0 from "@angular/core";
/**
* Represents the base class for all IgxDataChartComponent category-based axes.
*
* ```html
* <igx-data-chart
* [dataSource]="data">
*
* <igx-category-x-axis
* label="label"
* #xAxis>
* </igx-category-x-axis>
* <igx-numeric-y-axis
* #yAxis>
* </igx-numeric-y-axis>
*
* <igx-column-series
* [xAxis]="xAxis"
* [yAxis]="yAxis"
* valueMemberPath="value">
* </igx-column-series>
* <igx-column-series
* [xAxis]="xAxis"
* [yAxis]="yAxis"
* valueMemberPath="value">
* </igx-column-series>
* </igx-data-chart>
* ```
*
* ```ts
* let series = new IgxColumnSeriesComponent();
* series.xAxis = this.xAxis;
* series.yAxis = this.yAxis;
* series.valueMemberPath="value";
* this.chart.series.add(series);
* ```
*/
export let IgxCategoryAxisBaseComponent = /*@__PURE__*/ (() => {
class IgxCategoryAxisBaseComponent extends IgxAxisComponent {
constructor() {
super();
this._chartLevelData = null;
this._dataSource = null;
if (this._styling) {
NamePatcher.ensureStylablePatched(Object.getPrototypeOf(this));
}
}
provideData(data) {
this._chartLevelData = data;
this.updateDataSource();
}
updateDataSource() {
if (this._dataSource == null) {
this.i.itemsSource = this._chartLevelData;
}
else {
this.i.itemsSource = this._dataSource;
}
}
set dataSource(value) {
this._dataSource = value;
this.updateDataSource();
//console.log("setting axis data source: " + value)
}
get dataSource() {
if (this._dataSource != null) {
return this._dataSource;
}
return this.i.itemsSource;
}
/**
* @hidden
*/
get i() {
return this._implementation;
}
/**
* Gets if the current axis is a continuous rather than a discrete scale
*/
get isContinuous() {
return this.i.di;
}
/**
* Checks if the axis is of category axis type
*/
get isCategory() {
return this.i.df;
}
/**
* Gets the number of items in the current category axis items source.
*/
get itemsCount() {
return this.i.p8;
}
set itemsCount(v) {
this.i.p8 = +v;
}
/**
* Gets or sets the amount of space between adjacent categories for the current axis object.
* The gap is silently clamped to the range [0, 1] when used.
*
* Use the `Gap` property to configure the spacing between items on a category axis with item spacing.
*
* A `Gap` of 0 allocates no space between items. A `Gap` of 1 allocates a space between items equal to the width of one item.
*
* To set the item spacing to 75% the width of one item, set the `Gap` to 0.75, as in this code:
*
* ```html
* <igx-data-chart
* [dataSource]="data">
* <igx-category-x-axis
* label="label"
* gap="0.75"
* #xAxis>
* </igx-category-x-axis>
* <igx-numeric-y-axis
* #yAxis>
* </igx-numeric-y-axis>
* <igx-column-series
* [xAxis]="xAxis"
* [yAxis]="yAxis"
* valueMemberPath="value">
* </igx-column-series>
* </igx-data-chart>
* ```
*/
get gap() {
return this.i.pt;
}
set gap(v) {
this.i.pt = +v;
}
/**
* Gets or sets the maximum gap value to allow. This defaults to 1.0.
*/
get maximumGap() {
return this.i.p0;
}
set maximumGap(v) {
this.i.p0 = +v;
}
/**
* Gets or sets the minimum amount of pixels to use for the gap between categories, if possible.
*/
get minimumGapSize() {
return this.i.p1;
}
set minimumGapSize(v) {
this.i.p1 = +v;
}
/**
* Gets or sets the amount of overlap between adjacent categories for the current axis object.
* The overlap is silently clamped to the range [-1, 1] when used.
*
* Use the `Overlap` property to configure the spacing between items on a category axis with item spacing and more than one series.
*
* An `Overlap` of 0 places grouped items adjacent to each other. An `Overlap` of 1 places grouped items in the same axis space, completely overlapping. An `Overlap` of -1 places a space between grouped items equal to the width of one item.
*
* To place grouped items with 75% overlap, set the `Overlap` to 0.75, as in this code:
*
* ```html
* <igx-data-chart
* [dataSource]="data">
*
* <igx-category-x-axis
* label="label"
* overlap="0.75"
* #xAxis>
* </igx-category-x-axis>
* <igx-numeric-y-axis
* #yAxis>
* </igx-numeric-y-axis>
*
* <igx-column-series
* [xAxis]="xAxis"
* [yAxis]="yAxis"
* valueMemberPath="value">
* </igx-column-series>
* <igx-column-series
* [xAxis]="xAxis"
* [yAxis]="yAxis"
* valueMemberPath="value">
* </igx-column-series>
* </igx-data-chart>
* ```
*/
get overlap() {
return this.i.p2;
}
set overlap(v) {
this.i.p2 = +v;
}
/**
* Gets or sets whether the category axis should use clustering display mode even if no series are present that would force clustering mode.
*
* `UseClusteringMode` applies grouping and spacing to a category axis equivalent to the grouping that occurs when grouping series, such as ColumnSeries, are used.
*
* Try setting it on an axis displaying financial series to adjust the spacing on the left and right sides of the axis:
*
* ```html
* <igx-data-chart
* [dataSource]="financialData">
* <igx-category-x-axis
* label="time"
* useClusteringMode="true"
* #xAxis>
* </igx-category-x-axis>
* <igx-numeric-y-axis
* #yAxis>
* </igx-numeric-y-axis>
*
* <igx-column-series
* [xAxis]="xAxis"
* [yAxis]="yAxis"
* valueMemberPath="value">
* </igx-column-series>
* <igx-financial-price-series
* [xAxis]="xAxis"
* [yAxis]="yAxis"
* openMemberPath="open"
* highMemberPath="high"
* lowMemberPath="low"
* closeMemberPath="close"
* volumeMemberPath="volume">
* </igx-financial-price-series>
* </igx-data-chart>
* ```
*/
get useClusteringMode() {
return this.i.pn;
}
set useClusteringMode(v) {
this.i.pn = ensureBool(v);
}
getFullRange() {
let iv = this.i.ag();
return (iv);
}
getMemberPathValue(memberPathName) {
let iv = this.i.i4(memberPathName);
return (iv);
}
getCategoryBoundingBox(point, useInterpolation, singularWidth) {
let iv = this.i.q7(toPoint(point), useInterpolation, singularWidth);
return fromRect(iv);
}
getCategoryBoundingBoxHelper(point, useInterpolation, singularWidth, isVertical) {
let iv = this.i.q8(toPoint(point), useInterpolation, singularWidth, isVertical);
return fromRect(iv);
}
/**
* Unscales a value from screen space into axis space.
* @param unscaledValue * The scaled value in screen coordinates to unscale into axis space.
*/
unscaleValue(unscaledValue) {
let iv = this.i.p4(unscaledValue);
return (iv);
}
notifySetItem(index, oldItem, newItem) {
this.i.qs(index, oldItem, newItem);
}
/**
* Used to manually notify the axis that the data source has reset or cleared its items.
*/
notifyClearItems() {
this.i.qp();
}
notifyInsertItem(index, newItem) {
this.i.qq(index, newItem);
}
notifyRemoveItem(index, oldItem) {
this.i.qr(index, oldItem);
}
}
IgxCategoryAxisBaseComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: IgxCategoryAxisBaseComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
IgxCategoryAxisBaseComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: IgxCategoryAxisBaseComponent, selector: "ng-component", inputs: { dataSource: "dataSource", itemsCount: "itemsCount", gap: "gap", maximumGap: "maximumGap", minimumGapSize: "minimumGapSize", overlap: "overlap", useClusteringMode: "useClusteringMode" }, usesInheritance: true, ngImport: i0, template: ``, isInline: true });
return IgxCategoryAxisBaseComponent;
})();
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: IgxCategoryAxisBaseComponent, decorators: [{
type: Component,
args: [{
template: ``,
}]
}], ctorParameters: function () { return []; }, propDecorators: { dataSource: [{
type: Input
}], itemsCount: [{
type: Input
}], gap: [{
type: Input
}], maximumGap: [{
type: Input
}], minimumGapSize: [{
type: Input
}], overlap: [{
type: Input
}], useClusteringMode: [{
type: Input
}] } });