Skip to content

Commit

Permalink
fix: markers margin adjustment (#1539)
Browse files Browse the repository at this point in the history
* fix: markers margin adjustment
  • Loading branch information
illetid committed Mar 19, 2024
1 parent 0eef9d7 commit de75f81
Show file tree
Hide file tree
Showing 3 changed files with 42 additions and 17 deletions.
8 changes: 4 additions & 4 deletions .size-limit.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,21 +4,21 @@ module.exports = [
{
name: 'CJS',
path: 'dist/lightweight-charts.production.cjs',
limit: '48.13 KB',
limit: '48.15 KB',
},
{
name: 'ESM',
path: 'dist/lightweight-charts.production.mjs',
limit: '48.07 KB',
limit: '48.11 KB',
},
{
name: 'Standalone-ESM',
path: 'dist/lightweight-charts.standalone.production.mjs',
limit: '49.77 KB',
limit: '49.8 KB',
},
{
name: 'Standalone',
path: 'dist/lightweight-charts.standalone.production.js',
limit: '49.82 KB',
limit: '49.85 KB',
},
];
10 changes: 10 additions & 0 deletions src/renderers/series-markers-utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,3 +38,13 @@ export interface BitmapShapeItemCoordinates {
y: number;
pixelRatio: number;
}

export function calculateAdjustedMargin(margin: number, hasSide: boolean, hasInBar: boolean): number {
if (hasSide) {
return margin;
} else if (hasInBar) {
return Math.ceil(margin / 2);
}

return 0;
}
41 changes: 28 additions & 13 deletions src/views/pane/series-markers-pane-view.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { IChartModelBase } from '../../model/chart-model';
import { Coordinate } from '../../model/coordinate';
import { PriceScale } from '../../model/price-scale';
import { ISeries } from '../../model/series';
import { InternalSeriesMarker } from '../../model/series-markers';
import { InternalSeriesMarker, SeriesMarkerPosition } from '../../model/series-markers';
import { SeriesType } from '../../model/series-options';
import { TimePointIndex, visibleTimedValues } from '../../model/time-data';
import { ITimeScale } from '../../model/time-scale';
Expand All @@ -18,6 +18,7 @@ import {
SeriesMarkersRenderer,
} from '../../renderers/series-markers-renderer';
import {
calculateAdjustedMargin,
calculateShapeHeight,
shapeMargin as calculateShapeMargin,
} from '../../renderers/series-markers-utils';
Expand All @@ -33,6 +34,8 @@ interface Offsets {
belowBar: number;
}

type MarkerPositions = Record<SeriesMarkerPosition, boolean>;

// eslint-disable-next-line max-params
function fillSizeAndY(
rendererItem: SeriesMarkerRendererDataItem,
Expand Down Expand Up @@ -94,7 +97,7 @@ export class SeriesMarkersPaneView implements IUpdatablePaneView {
private _autoScaleMarginsInvalidated: boolean = true;

private _autoScaleMargins: AutoScaleMargins | null = null;

private _markersPositions: MarkerPositions | null = null;
private _renderer: SeriesMarkersRenderer = new SeriesMarkersRenderer();

public constructor(series: ISeries<SeriesType>, model: IChartModelBase) {
Expand All @@ -111,6 +114,7 @@ export class SeriesMarkersPaneView implements IUpdatablePaneView {
this._autoScaleMarginsInvalidated = true;
if (updateType === 'data') {
this._dataInvalidated = true;
this._markersPositions = null;
}
}

Expand All @@ -131,16 +135,16 @@ export class SeriesMarkersPaneView implements IUpdatablePaneView {
}

public autoScaleMargins(): AutoScaleMargins | null {
if (this._autoScaleMarginsInvalidated && this._dataInvalidated) {
if (this._autoScaleMarginsInvalidated) {
if (this._series.indexedMarkers().length > 0) {
const barSpacing = this._model.timeScale().barSpacing();
const shapeMargin = calculateShapeMargin(barSpacing);
const marginsAboveAndBelow = calculateShapeHeight(barSpacing) * 1.5 + shapeMargin * 2;
const position = this._hasAllMarkerSamePosition();
const marginValue = calculateShapeHeight(barSpacing) * 1.5 + shapeMargin * 2;
const positions = this._getMarkerPositions();

this._autoScaleMargins = {
above: position === 'belowBar' ? 0 : marginsAboveAndBelow,
below: position === 'aboveBar' ? 0 : marginsAboveAndBelow,
above: calculateAdjustedMargin(marginValue, positions.aboveBar, positions.inBar),
below: calculateAdjustedMargin(marginValue, positions.belowBar, positions.inBar),
};
} else {
this._autoScaleMargins = null;
Expand All @@ -151,13 +155,24 @@ export class SeriesMarkersPaneView implements IUpdatablePaneView {

return this._autoScaleMargins;
}
protected _hasAllMarkerSamePosition(): string|null {
const markers = this._series.indexedMarkers();
const markersPositions = markers.every((i: InternalSeriesMarker<TimePointIndex>) => i.position === markers[0].position);
if (markersPositions) {
return markers[0].position;

protected _getMarkerPositions(): MarkerPositions {
if (this._markersPositions === null) {
this._markersPositions = this._series.indexedMarkers().reduce(
(acc: MarkerPositions, marker: InternalSeriesMarker<TimePointIndex>) => {
if (!acc[marker.position]) {
acc[marker.position] = true;
}
return acc;
},
{
inBar: false,
aboveBar: false,
belowBar: false,
}
);
}
return null;
return this._markersPositions;
}

protected _makeValid(): void {
Expand Down

0 comments on commit de75f81

Please sign in to comment.