score:6
Accepted answer
It looks like it's controlled by this CSS rule (nv.d3.css line 225):
.nvd3 .nv-axis.nv-x path.domain {
stroke-opacity: 0;
}
Overriding that with your own CSS should show the line (at least, changing the value to 1 in the developer tools worked for me).
score:2
.nvd3 .nv-axis.nv-x path.domain, .nvd3 .nv-axis.nv-y path.domain {
stroke: black;
shape-rendering: crispEdges;
}
Source: stackoverflow.com
Related Query
- NVD3 line chart display X axis
- NVD3 Line Chart X Axis Ticks Are Missing
- NVD3 Line Chart doesn't display when data passed using ajax - data.map is not a function
- Formatting nvd3 line chart axis
- how to display data from 1st point on words on y axis for line chart in d3.js
- Show values on Y Axis as it is with Higher and lower limits NVD3 Line Chart
- NVD3 Cumulative Line Chart : How to set different back ground color for specific X axis
- D3 Line chart - display value label on Y axis tick and a not scale
- Customize label on x axis nvd3 line chart angularjs
- nvd3 line chart with string values on x-axis
- D3 line chart axis text labels in multi line
- NVD3 - line chart NaN on safari using latest versions
- NVD3 line chart with realtime data
- javascript charting - nvd3 line chart with two Y-axis
- NVD3 Line Chart Uncaught TypeError: Cannot read property 'x' of undefined
- NVD3 line chart with vertical line
- nvd3.js-Line Chart with View Finder: rotate axis labels and show line values when mouse over
- How to display values in Stacked Multi-bar chart - nvd3 Graphs
- add y axis label to NVD3 Multi-Bar Chart
- How to change the viewfinder (focus chart) of a NVD3 line chart programmatically?
- nvd3 line chart not shown properly. (dots and shaded area)
- custom x axis tooltip for nvd3 scatter chart
- NVD3 line chart - legend text cut off
- D3 Line Chart to display first and last point values
- How to create Stacked Line Chart D3, Multiple Y Axis and common X Axis
- Dual Y axis line chart in dc.js
- NVD3 Stacked Bar Chart Plus Line Overlapped
- How to line up x axis on stacked bar chart with a line overlay in d3.js
- d3 bar chart with fixed bar width and fixed spacing to align in center axis line
- Line chart not aligned with x axis
More Query from same tag
- Unable to handle negative values on d3 bar chart
- d3js chart with crosshair as tooltip: How to Add 2 lines which intersect at cursor position
- How to add a click event or mouseover on dynamic elements ( enter/update/exit )?
- Why is selection.exit().size() zero?
- d3.selectAll to change styles by class in v4
- How to rotate shape with transform
- d3.svg.line() issues
- D3 On-Click zoom to a specific node
- In created:, my method doesn't work perfectly
- Starting Transitions and Animations With Area Graph in D3.JS
- Multiple straight line between two node in d3.js
- Using Jquery Mobile to create charts using d3js with fixed width
- d3.js pie chart legends slice toggle
- How can I remove non-integer ticks while zooming in with D3.js?
- d3.js - masking shapes to create transparent sectio
- Basic d3: Horizontal Bar Chart
- D3 Selecting SVG Text Elements
- How to speed up multiBarChart transitions?
- Scaling a Stacked Bar Chart in D3?
- find the x and y co-ordinates of the center and middle point inside a div
- variable scope inside of d3 reusable API
- How to export particular columns in CSV format?
- D3 Bar Chart Negative Values not Showing Up
- Rendering svg from static assets using d3 in React
- How to reduce space b/w bars in group bar chart D3 v4
- How to rotate SVG using d3.drag()?
- Flask and D3.js error - Uncaught (in promise) SyntaxError: Unexpected token < in JSON at position 0
- D3.js removing data on rect click
- d3 javascript display multiple charts on the same page
- Create a tooltip that displays Y-position on a line (d3.js)