mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-27 17:19:39 +02:00
Apply trendline gradient
This commit is contained in:
parent
176eac82b3
commit
56cd190afe
1 changed files with 67 additions and 21 deletions
|
@ -108,6 +108,7 @@ export default class extends Controller {
|
||||||
|
|
||||||
if (this.useLabelsValue) {
|
if (this.useLabelsValue) {
|
||||||
this.#drawXAxisLabels()
|
this.#drawXAxisLabels()
|
||||||
|
this.#drawGradientBelowTrendline()
|
||||||
}
|
}
|
||||||
|
|
||||||
if (this.useTooltipValue) {
|
if (this.useTooltipValue) {
|
||||||
|
@ -116,6 +117,18 @@ export default class extends Controller {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#drawTrendline() {
|
||||||
|
this.#d3Group
|
||||||
|
.append("path")
|
||||||
|
.datum(this.#normalDataPoints)
|
||||||
|
.attr("fill", "none")
|
||||||
|
.attr("stroke", this.#trendColor)
|
||||||
|
.attr("d", this.#d3Line)
|
||||||
|
.attr("stroke-linejoin", "round")
|
||||||
|
.attr("stroke-linecap", "round")
|
||||||
|
.attr("stroke-width", this.strokeWidthValue)
|
||||||
|
}
|
||||||
|
|
||||||
#drawXAxisLabels() {
|
#drawXAxisLabels() {
|
||||||
// Add ticks
|
// Add ticks
|
||||||
this.#d3Group
|
this.#d3Group
|
||||||
|
@ -144,21 +157,55 @@ export default class extends Controller {
|
||||||
.attr("dy", "0em")
|
.attr("dy", "0em")
|
||||||
}
|
}
|
||||||
|
|
||||||
#drawTrendline() {
|
#drawGradientBelowTrendline() {
|
||||||
|
// Define gradient
|
||||||
|
const gradient = this.#d3Group
|
||||||
|
.append("defs")
|
||||||
|
.append("linearGradient")
|
||||||
|
.attr("id", `${this.element.id}-trendline-gradient`)
|
||||||
|
.attr("gradientUnits", "userSpaceOnUse")
|
||||||
|
.attr("x1", 0)
|
||||||
|
.attr("x2", 0)
|
||||||
|
.attr("y1", this.#d3YScale(d3.max(this.#normalDataPoints, d => d.value)))
|
||||||
|
.attr("y2", this.#d3ContainerHeight)
|
||||||
|
|
||||||
|
gradient
|
||||||
|
.append("stop")
|
||||||
|
.attr("offset", 0)
|
||||||
|
.attr("stop-color", this.#trendColor)
|
||||||
|
.attr("stop-opacity", 0.06)
|
||||||
|
|
||||||
|
gradient
|
||||||
|
.append("stop")
|
||||||
|
.attr("offset", 0.5)
|
||||||
|
.attr("stop-color", this.#trendColor)
|
||||||
|
.attr("stop-opacity", 0)
|
||||||
|
|
||||||
|
// Clip path makes gradient start at the trendline
|
||||||
this.#d3Group
|
this.#d3Group
|
||||||
|
.append("clipPath")
|
||||||
|
.attr("id", `${this.element.id}-clip-below-trendline`)
|
||||||
.append("path")
|
.append("path")
|
||||||
.datum(this.#normalDataPoints)
|
.datum(this.#normalDataPoints)
|
||||||
.attr("fill", "none")
|
.attr("d", d3.area()
|
||||||
.attr("stroke", this.#trendColor)
|
.x(d => this.#d3XScale(d.date))
|
||||||
.attr("d", this.#d3Line)
|
.y0(this.#d3ContainerHeight)
|
||||||
.attr("stroke-linejoin", "round")
|
.y1(d => this.#d3YScale(d.value))
|
||||||
.attr("stroke-linecap", "round")
|
)
|
||||||
.attr("stroke-width", this.strokeWidthValue)
|
|
||||||
|
// Apply the gradient + clip path
|
||||||
|
this.#d3Group
|
||||||
|
.append("rect")
|
||||||
|
.attr("width", this.#d3ContainerWidth)
|
||||||
|
.attr("height", this.#d3ContainerHeight)
|
||||||
|
.attr("clip-path", `url(#${this.element.id}-clip-below-trendline)`)
|
||||||
|
.style("fill", `url(#${this.element.id}-trendline-gradient)`)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
#drawTooltip() {
|
#drawTooltip() {
|
||||||
this.#d3Tooltip = d3
|
this.#d3Tooltip = d3
|
||||||
.select("#lineChart")
|
.select(`#${this.element.id}`)
|
||||||
.append("div")
|
.append("div")
|
||||||
.style("position", "absolute")
|
.style("position", "absolute")
|
||||||
.style("padding", "8px")
|
.style("padding", "8px")
|
||||||
|
@ -195,6 +242,17 @@ export default class extends Controller {
|
||||||
this.#d3Group.selectAll(".data-point-circle").remove()
|
this.#d3Group.selectAll(".data-point-circle").remove()
|
||||||
this.#d3Group.selectAll(".guideline").remove()
|
this.#d3Group.selectAll(".guideline").remove()
|
||||||
|
|
||||||
|
// Guideline
|
||||||
|
this.#d3Group
|
||||||
|
.append("line")
|
||||||
|
.attr("class", "guideline")
|
||||||
|
.attr("x1", this.#d3XScale(d.date))
|
||||||
|
.attr("y1", 0)
|
||||||
|
.attr("x2", this.#d3XScale(d.date))
|
||||||
|
.attr("y2", this.#d3ContainerHeight)
|
||||||
|
.attr("stroke", tailwindColors.gray[300])
|
||||||
|
.attr("stroke-dasharray", "4, 4")
|
||||||
|
|
||||||
// Big circle
|
// Big circle
|
||||||
this.#d3Group
|
this.#d3Group
|
||||||
.append("circle")
|
.append("circle")
|
||||||
|
@ -216,17 +274,6 @@ export default class extends Controller {
|
||||||
.attr("fill", this.#trendColor)
|
.attr("fill", this.#trendColor)
|
||||||
.attr("pointer-events", "none")
|
.attr("pointer-events", "none")
|
||||||
|
|
||||||
// Guideline
|
|
||||||
this.#d3Group
|
|
||||||
.append("line")
|
|
||||||
.attr("class", "guideline")
|
|
||||||
.attr("x1", this.#d3XScale(d.date))
|
|
||||||
.attr("y1", 0)
|
|
||||||
.attr("x2", this.#d3XScale(d.date))
|
|
||||||
.attr("y2", this.#d3ContainerHeight)
|
|
||||||
.attr("stroke", tailwindColors.gray[300])
|
|
||||||
.attr("stroke-dasharray", "4, 4")
|
|
||||||
|
|
||||||
// Render tooltip
|
// Render tooltip
|
||||||
this.#d3Tooltip
|
this.#d3Tooltip
|
||||||
.html(this.#tooltipTemplate(d))
|
.html(this.#tooltipTemplate(d))
|
||||||
|
@ -241,7 +288,6 @@ export default class extends Controller {
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
#tooltipTemplate(data) {
|
#tooltipTemplate(data) {
|
||||||
return(`
|
return(`
|
||||||
<div style="margin-bottom: 4px; color: ${tailwindColors.gray[500]};">
|
<div style="margin-bottom: 4px; color: ${tailwindColors.gray[500]};">
|
||||||
|
@ -354,7 +400,7 @@ export default class extends Controller {
|
||||||
|
|
||||||
get #margin() {
|
get #margin() {
|
||||||
if (this.useLabelsValue) {
|
if (this.useLabelsValue) {
|
||||||
return { top: 20, right: 1, bottom: 30, left: 1 }
|
return { top: 20, right: 0, bottom: 30, left: 0 }
|
||||||
} else {
|
} else {
|
||||||
return { top: 0, right: 0, bottom: 0, left: 0 }
|
return { top: 0, right: 0, bottom: 0, left: 0 }
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue