Skip to content

Commit

Permalink
hmmm
Browse files Browse the repository at this point in the history
  • Loading branch information
ArielMant0 committed Dec 7, 2023
1 parent b5f7547 commit 48f7dfb
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
13 changes: 13 additions & 0 deletions src/components/LineChart.vue
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,19 @@
const xAxis = svg.append("g")
.attr("transform", `translate(0,${props.height-25})`)
.call(d3.axisBottom(xScale).tickFormat(d3.timeFormat("%0d %b")))
// .call(g => {
// g.call(d3.axisBottom(xScale).tickFormat(d3.timeFormat("%0d %b")))
// g.selectAll(".tick text")
// .classed("fg", true)
// .clone(true)
// .classed("fg", false)
// .attr("fill", "white")
// .attr("font-weight", "bold")
// .style("font-size", "larger")
// g.selectAll(".tick text.fg").raise()
// })
const yAxis = svg.append("g")
.attr("transform", "translate(35,0)")
Expand Down
1 change: 1 addition & 0 deletions src/components/OperationTree.vue
Original file line number Diff line number Diff line change
Expand Up @@ -325,6 +325,7 @@
opGroup.append("circle")
.attr("r", 8)
.attr("fill", "black")
.attr("stroke", "white")
.style("cursor", "pointer")
opGroup.append("path")
Expand Down

0 comments on commit 48f7dfb

Please sign in to comment.