Commit 06e41fcd by Tim Krones

Remove ticks and tick labels from plot axes.

parent 37d5d426
...@@ -57,11 +57,13 @@ function PlotBlock(runtime, element) { ...@@ -57,11 +57,13 @@ function PlotBlock(runtime, element) {
// Create axes // Create axes
var xAxis = d3.svg.axis() var xAxis = d3.svg.axis()
.scale(xScale) .scale(xScale)
.orient("bottom"); .orient("bottom")
.tickValues([]);
var yAxis = d3.svg.axis() var yAxis = d3.svg.axis()
.scale(yScale) .scale(yScale)
.orient("left"); .orient("left")
.tickValues([]);
// Create SVG group elements for axes and call the xAxis and yAxis functions // Create SVG group elements for axes and call the xAxis and yAxis functions
var xAxisGroup = svgContainer.append("g") var xAxisGroup = svgContainer.append("g")
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment