Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7892965
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T07:00:01+00:00 2026-06-03T07:00:01+00:00

I have a simple graph with x and y axes. I don’t want the

  • 0

I have a simple graph with x and y axes. I don’t want the drawing area I draw within to overlap the axes.

I’m using d3 to create my chart but the clip-path does not work:

http://jsfiddle.net/EqLBJ/

var margin = {top: 19.5, right: 19.5, bottom: 19.5, left: 39.5},
    width = 960 - margin.right,
    height = 500 - margin.top - margin.bottom;

var xScale = d3.scale.linear().
    domain([xMin, xMax]). // your data minimum and maximum
    range([0, width]); // the pixels to map to, e.g., the width of the diagram.

var yScale = d3.scale.linear().
    domain([yMax, yMin]). 
    range([0, height]); 

var xAxis = d3.svg.axis().orient("bottom").scale(xScale).ticks(10, d3.format(",d")),
    yAxis = d3.svg.axis().orient("left").scale(yScale);


var chart = d3.select("#chart").append("svg")
    .attr("class", "chart")
    .attr("width", width + margin.left + margin.right)
    .attr("height", height + margin.top + margin.bottom)
    .attr("pointer-events", "all")
    .append("g")
    .attr("transform", "translate(" + margin.left + "," + margin.top + ")")
    .call(d3.behavior.zoom().scaleExtent([0.2, 5]).on("zoom", redraw));


var rect = chart.append('svg:rect')
    .attr('width', width)
    .attr('height', height)
    .attr('fill', 'white');


var line = d3.svg.line()
        .interpolate("basis")
        .x(function(d, i) { return xScale(d.time); })
        .y(function(d) { return yScale(d.value); });

var clip = chart.append("svg:clipPath")
    .attr("id", "clip");

clip.append("svg:rect")
    .attr("id", "clip-rect")
    .attr("width", width)
    .attr("height", height);
    // .attr("fill", "white");

var path = chart.append("svg:path")
    .attr("clip-path", "url(#clip-rect)")
    .data([data])
    .attr("class", "line")
    .attr("fill", "none")
    .attr("stroke", "maroon")
    .attr("stroke-width", 2)
    .attr("d", line);

// x-axis label
chart.append("text")
    .attr("class", "x label")
    .attr("text-anchor", "end")
    .attr("x", width)
    .attr("y", height - 6)
    .text("time");

// y-axis label
chart.append("text")
    .attr("class", "y label")
    .attr("text-anchor", "end")
    .attr("y", 6)
    .attr("dy", ".75em")
    .attr("transform", "rotate(-90)")
    .text("value");

// x-axis
var xaxis = chart.append("g")
    .attr("class", "x axis")
    .attr("transform", "translate(0," + height + ")")
    .call(xAxis);

// y-axis
var yaxis = chart.append("g")
    .attr("class", "y axis")
    .call(yAxis);



function redraw() 
{
    console.log("here", d3.event.translate, d3.event.scale);

    path.transition()       
        .ease("linear")
        .attr("transform", "translate(" + d3.event.translate + ")" + " scale(" + d3.event.scale + ")");

}
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-03T07:00:03+00:00Added an answer on June 3, 2026 at 7:00 am

    You want something like this:

    http://jsfiddle.net/dsummersl/EqLBJ/1/

    Specifically:

    • use ‘clip’ instead of ‘clip-rect’
    • put the content you wish to clip inside a ‘g’ element, and specify the ‘clip-path’ attribute and the transforms for the ‘g’ element.
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am using java2d to draw a simple graph at the moment I have
I have a simple graph with a lot of points, so I don't want
In my program I want to draw a simple score line graph. I have
I have a very simple line graph I'm trying to create in gRaphael. My
I'm searching for a way to create complex/simple graph using Perl. The known modules/applications
I have some simple code that represents a graph using a square boolean matrix
I'm serializing a very simple graph into an XML using xStream, I have this
I need to draw a simple graph, but I have no experience with custom
I have a simple JSON object graph I'm trying to render using a Mustache
I want to create a simple graph which will get the values and shows

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.