Skip to content

Commit

Permalink
Merge pull request #32 from sgratzl/release/v4.2.2
Browse files Browse the repository at this point in the history
Release v4.2.2
  • Loading branch information
sgratzl committed Jul 8, 2023
2 parents 067f554 + 790ed25 commit 0239d3d
Show file tree
Hide file tree
Showing 6 changed files with 1 addition and 16 deletions.
2 changes: 1 addition & 1 deletion package.json
@@ -1,7 +1,7 @@
{
"name": "chartjs-chart-pcp",
"description": "Chart.js module for charting parallel coordinate plots",
"version": "4.2.1",
"version": "4.2.2",
"author": {
"name": "Samuel Gratzl",
"email": "sam@sgratzl.com",
Expand Down
3 changes: 0 additions & 3 deletions src/controllers/LogarithmicParallelCoordinatesController.ts
Expand Up @@ -14,9 +14,6 @@ import patchController from './patchController';
import { PCPScale } from '../scales';

export class LogarithmicParallelCoordinatesController extends ParallelCoordinatesController {
/**
* @internal
*/
static readonly id = 'logarithmicPcp';

/**
Expand Down
3 changes: 0 additions & 3 deletions src/controllers/ParallelCoordinatesController.ts
Expand Up @@ -277,9 +277,6 @@ export class ParallelCoordinatesController extends DatasetController<
});
}

/**
* @internal
*/
static readonly id: string = 'pcp';

/**
Expand Down
3 changes: 0 additions & 3 deletions src/elements/LineSegment.ts
Expand Up @@ -130,9 +130,6 @@ export class LineSegment extends Element<ILineSegmentProps & AnyObject, ILineSeg
ctx.restore();
}

/**
* @internal
*/
static readonly id = 'lineSegment';

/**
Expand Down
3 changes: 0 additions & 3 deletions src/elements/LinearAxis.ts
Expand Up @@ -117,9 +117,6 @@ export class LinearAxis extends LinearScale<ILinearAxisOptions> {
export type ILogarithmicAxisOptions = IAxisOptions & LogarithmicScaleOptions;

export class LogarithmicAxis extends LogarithmicScale<ILogarithmicAxisOptions> {
/**
* @internal
*/
static readonly id = 'logarithmicAxis';

/**
Expand Down
3 changes: 0 additions & 3 deletions src/scales/PCPScale.ts
Expand Up @@ -9,9 +9,6 @@ export class PCPScale extends CategoryScale {
});
}

/**
* @internal
*/
static readonly id = 'pcp';

/**
Expand Down

0 comments on commit 0239d3d

Please sign in to comment.