|
|
|
@ -1,74 +1,65 @@
|
|
|
|
|
import { ChartwerkPod, VueChartwerkPodMixin, TickOrientation, TimeFormat, yAxisOrientation, CrosshairOrientation, PanOrientation } from '@chartwerk/core'; |
|
|
|
|
import { ScatterData, ScatterOptions, PointType, LineType, ColorFormatter } from './types'; |
|
|
|
|
import { ChartwerkPod, VueChartwerkPodMixin, TimeFormat, yAxisOrientation, CrosshairOrientation } from '@chartwerk/core'; |
|
|
|
|
import { ScatterData, ScatterOptions, PointType, LineType, HighlightedData, MouseMoveEvent, DelaunayDataRow } from './types'; |
|
|
|
|
|
|
|
|
|
import { DelaunayDiagram } from './delaunay'; |
|
|
|
|
import { DelaunayDiagram } from './models/delaunay'; |
|
|
|
|
import { ScatterSeries } from './models/scatter_series'; |
|
|
|
|
|
|
|
|
|
import * as d3 from 'd3'; |
|
|
|
|
import * as _ from 'lodash'; |
|
|
|
|
|
|
|
|
|
// TODO: use pod state with defaults
|
|
|
|
|
const DEFAULT_POINT_SIZE = 4; |
|
|
|
|
const POINT_HIGHLIGHT_DIAMETER = 4; |
|
|
|
|
const CROSSHAIR_BACKGROUND_OPACITY = 0.3; |
|
|
|
|
const DEFAULT_POINT_TYPE = PointType.CIRCLE; |
|
|
|
|
const DEFAULT_LINE_TYPE = LineType.NONE; |
|
|
|
|
const DEFAULT_LINE_DASHED_AMOUNT = 4; |
|
|
|
|
|
|
|
|
|
export class ChartwerkScatterPod extends ChartwerkPod<ScatterData, ScatterOptions> { |
|
|
|
|
_metricsContainer: any; |
|
|
|
|
metricContainer: any; |
|
|
|
|
_delaunayDiagram: DelaunayDiagram; |
|
|
|
|
series: ScatterSeries; |
|
|
|
|
|
|
|
|
|
constructor(el: HTMLElement, _series: ScatterData[] = [], _options: ScatterOptions = {}) { |
|
|
|
|
super(d3, el, _series, _options); |
|
|
|
|
super(el, _series, _options); |
|
|
|
|
this.series = new ScatterSeries(_series); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
renderMetrics(): void { |
|
|
|
|
if(this.series.length === 0) { |
|
|
|
|
if(!this.series.isSeriesAvailable) { |
|
|
|
|
this.renderNoDataPointsMessage(); |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
this.updateCrosshair(); |
|
|
|
|
this.renderMetricContainer(); |
|
|
|
|
|
|
|
|
|
this._delaunayDiagram = new DelaunayDiagram(this.series, this.xScale, this.getYScale.bind(this)); |
|
|
|
|
this._delaunayDiagram = new DelaunayDiagram(this.series, this.state.xScale, this.getYScale.bind(this)); |
|
|
|
|
|
|
|
|
|
this.renderLines(); |
|
|
|
|
this.renderPoints(); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
renderMetricContainer(): void { |
|
|
|
|
// container for clip path
|
|
|
|
|
const clipContatiner = this.chartContainer |
|
|
|
|
.append('g') |
|
|
|
|
.attr('clip-path', `url(#${this.rectClipId})`) |
|
|
|
|
.attr('class', 'metrics-container'); |
|
|
|
|
// container for panning
|
|
|
|
|
this._metricsContainer = clipContatiner |
|
|
|
|
.append('g') |
|
|
|
|
.attr('class', ' metrics-rect'); |
|
|
|
|
clearAllMetrics(): void { |
|
|
|
|
// TODO: temporary hack before it will be implemented in core.
|
|
|
|
|
this.chartContainer.selectAll('.metric-el').remove(); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
protected updateCrosshair(): void { |
|
|
|
|
this.crosshair.selectAll('circle').remove(); |
|
|
|
|
// TODO: Crosshair class, which can be used as Pod
|
|
|
|
|
this.appendCrosshairPoints(); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
appendCrosshairPoints(): void { |
|
|
|
|
this.series.forEach((serie: ScatterData, serieIdx: number) => { |
|
|
|
|
this.appendCrosshairPoint(serieIdx); |
|
|
|
|
this.series.visibleSeries.forEach((serie: ScatterData) => { |
|
|
|
|
this.appendCrosshairPoint(serie.idx, serie.pointType, serie.pointSize); |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
protected appendCrosshairPoint(serieIdx: number): void { |
|
|
|
|
protected appendCrosshairPoint(serieIdx: number, pointType: PointType, size: number): void { |
|
|
|
|
// TODO: add Crosshair type options
|
|
|
|
|
const pointType = this.series[serieIdx].pointType || DEFAULT_POINT_TYPE; |
|
|
|
|
switch(pointType) { |
|
|
|
|
case PointType.NONE: |
|
|
|
|
return; |
|
|
|
|
case PointType.CIRCLE: |
|
|
|
|
this.crosshair.append('circle') |
|
|
|
|
.attr('class', `crosshair-point crosshair-point-${serieIdx} crosshair-background`) |
|
|
|
|
.attr('r', this.getCrosshairCircleBackgroundSize(serieIdx)) |
|
|
|
|
.attr('r', this.getCrosshairCircleBackgroundSize(size, pointType)) |
|
|
|
|
.attr('clip-path', `url(#${this.rectClipId})`) |
|
|
|
|
.style('opacity', CROSSHAIR_BACKGROUND_OPACITY) |
|
|
|
|
.style('pointer-events', 'none') |
|
|
|
@ -77,8 +68,8 @@ export class ChartwerkScatterPod extends ChartwerkPod<ScatterData, ScatterOption
|
|
|
|
|
case PointType.RECTANGLE: |
|
|
|
|
this.crosshair.append('rect') |
|
|
|
|
.attr('class', `crosshair-point crosshair-point-${serieIdx} crosshair-background`) |
|
|
|
|
.attr('width', this.getCrosshairCircleBackgroundSize(serieIdx)) |
|
|
|
|
.attr('height', this.getCrosshairCircleBackgroundSize(serieIdx)) |
|
|
|
|
.attr('width', this.getCrosshairCircleBackgroundSize(size, pointType)) |
|
|
|
|
.attr('height', this.getCrosshairCircleBackgroundSize(size, pointType)) |
|
|
|
|
.attr('clip-path', `url(#${this.rectClipId})`) |
|
|
|
|
.style('opacity', CROSSHAIR_BACKGROUND_OPACITY) |
|
|
|
|
.style('pointer-events', 'none') |
|
|
|
@ -90,82 +81,97 @@ export class ChartwerkScatterPod extends ChartwerkPod<ScatterData, ScatterOption
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
protected renderLines(): void { |
|
|
|
|
this.series.forEach((serie, serieIdx) => { |
|
|
|
|
if(serie.visible === false) { |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
const lineType = serie.lineType || DEFAULT_LINE_TYPE; |
|
|
|
|
this.renderLine(serie.datapoints, lineType, this.getSerieColor(serieIdx), serie.yOrientation); |
|
|
|
|
this.series.visibleSeries.forEach(serie => { |
|
|
|
|
this.renderLine(serie); |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
renderLine(datapoints: number[][], lineType: LineType, color: string, orientation: yAxisOrientation): void { |
|
|
|
|
if(lineType === LineType.NONE) { |
|
|
|
|
renderLine(serie: ScatterData): void { |
|
|
|
|
if(serie.lineType === LineType.NONE) { |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
let strokeDasharray; |
|
|
|
|
// TODO: move to option
|
|
|
|
|
if(lineType === LineType.DASHED) { |
|
|
|
|
if(serie.lineType === LineType.DASHED) { |
|
|
|
|
strokeDasharray = DEFAULT_LINE_DASHED_AMOUNT; |
|
|
|
|
} |
|
|
|
|
const lineGenerator = this.d3.line() |
|
|
|
|
.x((d: [number, number]) => this.xScale(d[1])) |
|
|
|
|
.y((d: [number, number]) => this.getYScale(orientation)(d[0])); |
|
|
|
|
const lineGenerator = d3.line() |
|
|
|
|
.x((d: [number, number]) => this.state.xScale(d[0])) |
|
|
|
|
.y((d: [number, number]) => this.getYScale(serie.yOrientation)(d[1])); |
|
|
|
|
|
|
|
|
|
this._metricsContainer |
|
|
|
|
this.metricContainer |
|
|
|
|
.append('path') |
|
|
|
|
.datum(datapoints) |
|
|
|
|
.datum(serie.datapoints) |
|
|
|
|
.attr('class', 'metric-path') |
|
|
|
|
.attr('d', lineGenerator) |
|
|
|
|
.attr('fill', 'none') |
|
|
|
|
.style('pointer-events', 'none') |
|
|
|
|
.attr('stroke', color) |
|
|
|
|
.attr('stroke', serie.color) |
|
|
|
|
.attr('stroke-width', 1) |
|
|
|
|
.attr('stroke-opacity', 0.7) |
|
|
|
|
.attr('stroke-dasharray', strokeDasharray) |
|
|
|
|
.attr('d', lineGenerator); |
|
|
|
|
.style('pointer-events', serie.clickCallback ? 'auto' : 'none') |
|
|
|
|
.style('cursor', serie.clickCallback ? 'pointer' : 'crosshair') |
|
|
|
|
.on('click', () => { serie.clickCallback({ target: serie.target, class: serie.class, alias: serie.alias }) }); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
protected renderPoints(): void { |
|
|
|
|
if(!this._delaunayDiagram.data) { |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
this._metricsContainer.selectAll(null) |
|
|
|
|
this.metricContainer.selectAll(null) |
|
|
|
|
.data(this._delaunayDiagram.data) |
|
|
|
|
.enter() |
|
|
|
|
.append('circle') |
|
|
|
|
.filter((d: number[]) => this.series[_.last(d)].pointType !== PointType.RECTANGLE) |
|
|
|
|
.filter((d: DelaunayDataRow) => this.series.getSerieByTarget(d[4])?.pointType !== PointType.RECTANGLE) |
|
|
|
|
.attr('class', (d, i: number) => `metric-element metric-circle point-${i}`) |
|
|
|
|
.attr('r', (d: number[]) => this.series[_.last(d)].pointSize || DEFAULT_POINT_SIZE) |
|
|
|
|
.style('fill', (d: number[]) => this.getSerieColor(_.last(d))) |
|
|
|
|
.style('pointer-events', 'none') |
|
|
|
|
.attr('cx', (d: any[]) => this.xScale(d[1])) |
|
|
|
|
.attr('cy', (d: any[]) => this.getYScale(this.series[_.last(d)].yOrientation)(d[0])); |
|
|
|
|
|
|
|
|
|
this._metricsContainer.selectAll(null) |
|
|
|
|
.attr('r', (d: DelaunayDataRow) => this.series.getSerieByTarget(d[4])?.pointSize) |
|
|
|
|
.attr('cx', (d: DelaunayDataRow) => this.state.xScale(d[0])) |
|
|
|
|
.attr('cy', (d: DelaunayDataRow) => this.getYScale(this.series.getSerieByTarget(d[4])?.yOrientation)(d[1])) |
|
|
|
|
.style('fill', (d: DelaunayDataRow, i: number) => this.getSeriesColorFromDataRow(d, i)) |
|
|
|
|
.style('pointer-events', (d: DelaunayDataRow) => this.series.getSerieByTarget(d[4])?.clickCallback ? 'auto' : 'none') |
|
|
|
|
.style('cursor', (d: DelaunayDataRow) => this.series.getSerieByTarget(d[4])?.clickCallback ? 'pointer' : 'crosshair') |
|
|
|
|
.on('click', (d: DelaunayDataRow) => { |
|
|
|
|
d3.event.stopPropagation(); |
|
|
|
|
const serie = this.series.getSerieByTarget(d[4]); |
|
|
|
|
const serieData = { target: serie?.target, class: serie?.class, alias: serie?.alias }; |
|
|
|
|
serie?.clickCallback(serieData, d); |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
this.metricContainer.selectAll(null) |
|
|
|
|
.data(this._delaunayDiagram.data) |
|
|
|
|
.enter() |
|
|
|
|
.append('rect') |
|
|
|
|
.filter((d: number[]) => this.series[_.last(d)].pointType === PointType.RECTANGLE) |
|
|
|
|
.filter((d: DelaunayDataRow) => this.series.getSerieByTarget(d[4])?.pointType === PointType.RECTANGLE) |
|
|
|
|
.attr('class', (d, i: number) => `metric-element metric-circle point-${i}`) |
|
|
|
|
.attr('r', (d: number[]) => this.series[_.last(d)].pointSize || DEFAULT_POINT_SIZE) |
|
|
|
|
.style('fill', (d: number[]) => this.getSerieColor(_.last(d))) |
|
|
|
|
.style('pointer-events', 'none') |
|
|
|
|
.attr('x', (d: number[]) => this.xScale(d[1]) - (this.series[_.last(d)].pointSize || DEFAULT_POINT_SIZE) / 2) |
|
|
|
|
.attr('y', (d: number[]) => this.getYScale(this.series[_.last(d)].yOrientation)(d[0]) - (this.series[_.last(d)].pointSize || DEFAULT_POINT_SIZE) / 2) |
|
|
|
|
.attr('width', (d: number[]) => this.series[_.last(d)].pointSize || DEFAULT_POINT_SIZE) |
|
|
|
|
.attr('height', (d: number[]) => this.series[_.last(d)].pointSize || DEFAULT_POINT_SIZE); |
|
|
|
|
.attr('r', (d: DelaunayDataRow) => this.series.getSerieByTarget(d[4])?.pointSize) |
|
|
|
|
.attr('x', (d: DelaunayDataRow) => this.state.xScale(d[0]) - this.series.getSerieByTarget(d[4])?.pointSize / 2) |
|
|
|
|
.attr('y', (d: DelaunayDataRow) => this.getYScale(this.series.getSerieByTarget(d[4])?.yOrientation)(d[1]) - this.series.getSerieByTarget(d[4])?.pointSize / 2) |
|
|
|
|
.attr('width', (d: DelaunayDataRow) => this.series.getSerieByTarget(d[4])?.pointSize) |
|
|
|
|
.attr('height', (d: DelaunayDataRow) => this.series.getSerieByTarget(d[4])?.pointSize) |
|
|
|
|
.style('fill', (d: DelaunayDataRow) => this.series.getSerieByTarget(d[4])?.color) |
|
|
|
|
.style('pointer-events', (d: DelaunayDataRow) => this.series.getSerieByTarget(d[4])?.clickCallback ? 'auto' : 'none') |
|
|
|
|
.style('cursor', (d: DelaunayDataRow) => this.series.getSerieByTarget(d[4])?.clickCallback ? 'pointer' : 'crosshair') |
|
|
|
|
.on('click', (d: DelaunayDataRow) => { |
|
|
|
|
d3.event.stopPropagation(); |
|
|
|
|
const serie = this.series.getSerieByTarget(d[4]); |
|
|
|
|
const serieData = { target: serie?.target, class: serie?.class, alias: serie?.alias }; |
|
|
|
|
serie?.clickCallback(serieData, d); |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
getSeriesColorFromDataRow(values: DelaunayDataRow, rowIdx: number): string { |
|
|
|
|
const serie = this.series.getSerieByTarget(values[4]); |
|
|
|
|
if(serie?.colorFormatter) { |
|
|
|
|
return serie.colorFormatter(values, rowIdx); |
|
|
|
|
} |
|
|
|
|
return serie.color; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
onPanningEnd(): void { |
|
|
|
|
this.isPanning = false; |
|
|
|
|
this.onMouseOut(); |
|
|
|
|
this._delaunayDiagram.setDelaunayDiagram(this.xScale, this.getYScale.bind(this)); |
|
|
|
|
if(this.options.eventsCallbacks !== undefined && this.options.eventsCallbacks.panningEnd !== undefined) { |
|
|
|
|
this.options.eventsCallbacks.panningEnd([this.state.xValueRange, this.state.yValueRange, this.state.y1ValueRange]); |
|
|
|
|
} else { |
|
|
|
|
console.log('on panning end, but there is no callback'); |
|
|
|
|
} |
|
|
|
|
this._delaunayDiagram.setDelaunayDiagram(this.state.xScale, this.getYScale.bind(this)); |
|
|
|
|
this.options.callbackPanningEnd([this.state.xValueRange, this.state.yValueRange, this.state.y1ValueRange]); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
unhighlight(): void { |
|
|
|
@ -175,47 +181,37 @@ export class ChartwerkScatterPod extends ChartwerkPod<ScatterData, ScatterOption
|
|
|
|
|
highlight(pointIdx: number): void { |
|
|
|
|
this.unhighlight(); |
|
|
|
|
|
|
|
|
|
const datapoint = this._delaunayDiagram.getDataRowByIndex(pointIdx); |
|
|
|
|
if(datapoint === undefined || datapoint === null) { |
|
|
|
|
const row = this._delaunayDiagram.getDataRowByIndex(pointIdx); |
|
|
|
|
if(row === undefined || row === null) { |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
const serieIdx = _.last(datapoint); |
|
|
|
|
const serieOrientation = this.series[serieIdx].yOrientation; |
|
|
|
|
const size = this.getCrosshairCircleBackgroundSize(serieIdx); |
|
|
|
|
const colorFormatter = this.series[serieIdx].colorFormatter; |
|
|
|
|
this.crosshair.selectAll(`.crosshair-point-${serieIdx}`) |
|
|
|
|
.attr('cx', this.xScale(datapoint[1])) |
|
|
|
|
.attr('cy', this.getYScale(serieOrientation)(datapoint[0])) |
|
|
|
|
.attr('x', this.xScale(datapoint[1]) - size / 2) |
|
|
|
|
.attr('y', this.getYScale(serieOrientation)(datapoint[0]) - size / 2) |
|
|
|
|
.attr('fill', colorFormatter !== undefined ? colorFormatter(datapoint) : this.series[serieIdx].color) |
|
|
|
|
const serie = this.series.getSerieByTarget(row[4]); |
|
|
|
|
const size = this.getCrosshairCircleBackgroundSize(serie.pointSize, serie.pointType); |
|
|
|
|
this.crosshair.selectAll(`.crosshair-point-${serie.idx}`) |
|
|
|
|
.attr('cx', this.state.xScale(row[0])) |
|
|
|
|
.attr('cy', this.getYScale(serie.yOrientation)(row[1])) |
|
|
|
|
.attr('x', this.state.xScale(row[0]) - size / 2) |
|
|
|
|
.attr('y', this.getYScale(serie.yOrientation)(row[1]) - size / 2) |
|
|
|
|
.attr('fill', this.getSeriesColorFromDataRow(row, pointIdx)) |
|
|
|
|
.style('display', null); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
protected getCrosshairCircleBackgroundSize(serieIdx: number): number { |
|
|
|
|
const seriePointSize = this.series[serieIdx].pointSize || DEFAULT_POINT_SIZE; |
|
|
|
|
const pointType = this.series[serieIdx].pointType || DEFAULT_POINT_TYPE; |
|
|
|
|
protected getCrosshairCircleBackgroundSize(pointSize: number, pointType: PointType): number { |
|
|
|
|
let highlightDiameter = POINT_HIGHLIGHT_DIAMETER; |
|
|
|
|
if(pointType === PointType.RECTANGLE) { |
|
|
|
|
highlightDiameter = highlightDiameter * 2; |
|
|
|
|
} |
|
|
|
|
return seriePointSize + highlightDiameter; |
|
|
|
|
return pointSize + highlightDiameter; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public renderSharedCrosshair(values: { x?: number, y?: number }): void { |
|
|
|
|
this.onMouseOver(); // TODO: refactor to use it once
|
|
|
|
|
const eventX = this.xScale(values.x); |
|
|
|
|
const eventY = this.yScale(values.y); |
|
|
|
|
const eventX = this.state.xScale(values.x); |
|
|
|
|
const eventY = this.state.yScale(values.y); |
|
|
|
|
this.moveCrosshairLine(eventX, eventY); |
|
|
|
|
const datapoints = this.findAndHighlightDatapoints(values.x, values.y); |
|
|
|
|
|
|
|
|
|
if(this.options.eventsCallbacks === undefined || this.options.eventsCallbacks.sharedCrosshairMove === undefined) { |
|
|
|
|
console.log('Shared crosshair move, but there is no callback'); |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
this.options.eventsCallbacks.sharedCrosshairMove({ |
|
|
|
|
this.options.callbackSharedCrosshairMove({ |
|
|
|
|
datapoints, |
|
|
|
|
eventX, eventY |
|
|
|
|
}); |
|
|
|
@ -246,8 +242,12 @@ export class ChartwerkScatterPod extends ChartwerkPod<ScatterData, ScatterOption
|
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
findAndHighlightDatapoints(eventX: number, eventY: number): { values: any[], pointIdx: number } | null { |
|
|
|
|
if(this.series === undefined || this.series.length === 0) { |
|
|
|
|
findAndHighlightDatapoints(eventX: number, eventY: number): { |
|
|
|
|
xValue: number, yValue: number, customValue: number, |
|
|
|
|
pointIdx: number, totalPointIdx: number, |
|
|
|
|
serieInfo: { target: string, alias?: string, class?: string, idx?: number } |
|
|
|
|
} | null { |
|
|
|
|
if(!this.series.isSeriesAvailable) { |
|
|
|
|
return null; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -257,22 +257,29 @@ export class ChartwerkScatterPod extends ChartwerkPod<ScatterData, ScatterOption
|
|
|
|
|
return null; |
|
|
|
|
} |
|
|
|
|
this.highlight(pointIndex); |
|
|
|
|
|
|
|
|
|
const row = this._delaunayDiagram.data[pointIndex]; |
|
|
|
|
const serie = this.series.getSerieByTarget(row[4]); |
|
|
|
|
return { |
|
|
|
|
values: this._delaunayDiagram.data[pointIndex], |
|
|
|
|
pointIdx: pointIndex, |
|
|
|
|
xValue: row[0], |
|
|
|
|
yValue: row[1], |
|
|
|
|
customValue: row[2], |
|
|
|
|
pointIdx: row[3], |
|
|
|
|
serieInfo: { |
|
|
|
|
target: serie.target, |
|
|
|
|
alias: serie.alias, |
|
|
|
|
class: serie.class, |
|
|
|
|
idx: serie.idx, |
|
|
|
|
}, |
|
|
|
|
totalPointIdx: pointIndex, |
|
|
|
|
}; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
protected getYScale(orientation: yAxisOrientation): d3.ScaleLinear<number, number> { |
|
|
|
|
if(orientation === undefined || orientation === yAxisOrientation.BOTH) { |
|
|
|
|
return this.yScale; |
|
|
|
|
} |
|
|
|
|
switch(orientation) { |
|
|
|
|
case yAxisOrientation.LEFT: |
|
|
|
|
return this.yScale; |
|
|
|
|
return this.state.yScale; |
|
|
|
|
case yAxisOrientation.RIGHT: |
|
|
|
|
return this.y1Scale; |
|
|
|
|
return this.state.y1Scale; |
|
|
|
|
default: |
|
|
|
|
throw new Error(`Unknown type of y axis orientation: ${orientation}`)
|
|
|
|
|
} |
|
|
|
@ -283,12 +290,11 @@ export class ChartwerkScatterPod extends ChartwerkPod<ScatterData, ScatterOption
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
onMouseMove(): void { |
|
|
|
|
const mousePosition = this.d3.mouse(this.chartContainer.node()); |
|
|
|
|
const mousePosition = d3.mouse(this.chartContainer.node()); |
|
|
|
|
const eventX = mousePosition[0]; |
|
|
|
|
const eventY = mousePosition[1]; |
|
|
|
|
|
|
|
|
|
// TODO: seems isOutOfChart is deprecated (check clippath correctness)
|
|
|
|
|
if(this.isOutOfChart() === true || this.isPanning === true || this.isBrushing === true) { |
|
|
|
|
if(this.isPanning === true || this.isBrushing === true) { |
|
|
|
|
this.crosshair.style('display', 'none'); |
|
|
|
|
return; |
|
|
|
|
} else { |
|
|
|
@ -299,24 +305,25 @@ export class ChartwerkScatterPod extends ChartwerkPod<ScatterData, ScatterOption
|
|
|
|
|
|
|
|
|
|
// TOOD: it should be two different methods
|
|
|
|
|
const highlighted = this.findAndHighlightDatapoints(eventX, eventY); |
|
|
|
|
if(this.options.eventsCallbacks === undefined || this.options.eventsCallbacks.mouseMove === undefined) { |
|
|
|
|
console.log('Mouse move, but there is no callback'); |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
// TODO: group fields
|
|
|
|
|
this.options.eventsCallbacks.mouseMove({ |
|
|
|
|
x: this.d3.event.clientX, |
|
|
|
|
y: this.d3.event.clientY, |
|
|
|
|
xval: this.xScale.invert(eventX), |
|
|
|
|
yval: this.xScale.invert(eventY), |
|
|
|
|
highlighted, |
|
|
|
|
chartX: eventX, |
|
|
|
|
chartWidth: this.width |
|
|
|
|
this.options.callbackMouseMove({ |
|
|
|
|
bbox: { |
|
|
|
|
clientX: d3.event.clientX, |
|
|
|
|
clientY: d3.event.clientY, |
|
|
|
|
x: eventX, |
|
|
|
|
y: eventY, |
|
|
|
|
chartWidth: this.width, |
|
|
|
|
chartHeight: this.height, |
|
|
|
|
}, |
|
|
|
|
data: { |
|
|
|
|
xval: this.state.xScale.invert(eventX), |
|
|
|
|
yval: this.state.xScale.invert(eventY), |
|
|
|
|
highlighted, |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
onMouseOver(): void { |
|
|
|
|
if(this.isOutOfChart() === true || this.isPanning === true || this.isBrushing === true) { |
|
|
|
|
if(this.isPanning === true || this.isBrushing === true) { |
|
|
|
|
this.crosshair.style('display', 'none'); |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
@ -324,9 +331,7 @@ export class ChartwerkScatterPod extends ChartwerkPod<ScatterData, ScatterOption
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
onMouseOut(): void { |
|
|
|
|
if(this.options.eventsCallbacks !== undefined && this.options.eventsCallbacks.mouseOut !== undefined) { |
|
|
|
|
this.options.eventsCallbacks.mouseOut(); |
|
|
|
|
} |
|
|
|
|
this.options.callbackMouseOut(); |
|
|
|
|
this.crosshair.style('display', 'none'); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
@ -356,4 +361,4 @@ export const VueChartwerkScatterPodObject = {
|
|
|
|
|
} |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
export { ScatterData, ScatterOptions, TickOrientation, TimeFormat, PointType, LineType }; |
|
|
|
|
export { ScatterData, ScatterOptions, TimeFormat, PointType, LineType, HighlightedData, MouseMoveEvent }; |
|
|
|
|