{"id":4075,"date":"2016-05-10T11:40:32","date_gmt":"2016-05-10T11:40:32","guid":{"rendered":"http:\/\/www.garysieling.com\/blog\/?p=4075"},"modified":"2016-05-10T11:40:32","modified_gmt":"2016-05-10T11:40:32","slug":"making-selectable-d3-chart","status":"publish","type":"post","link":"https:\/\/www.garysieling.com\/blog\/making-selectable-d3-chart\/","title":{"rendered":"Making a selectable D3 chart"},"content":{"rendered":"<p>One of the nice built-in features of D3.js is the ability to render a chart where you can highlight parts of the graph:<\/p>\n<p><img alt='' class='alignnone size-full wp-image-4077' src='http:\/\/172.104.26.128\/wp-content\/uploads\/2016\/05\/img_5731c64b255a7.png' \/><\/p>\n<p>The feature is called &#8220;brushes&#8221; in the d3 docs.<\/p>\n<p>Here I&#8217;ve tried to replicate this in the simplest possible way.<\/p>\n<p>We need some CSS, for both the blue color and the highlight\/selection box:<\/p>\n<pre lang=\"html\">\n.area {\n  fill: steelblue;\n  clip-path: url(#clip);\n}\n\n.axis path,\n.axis line {\n  fill: none;\n  stroke: #000;\n  shape-rendering: crispEdges;\n}\n\n.brush .extent {\n  stroke: #fff;\n  fill-opacity: .125;\n  shape-rendering: crispEdges;\n}\n\n.brush .extent {\n  stroke: #fff;\n  fill-opacity: .125;\n  shape-rendering: crispEdges;\n}\n<\/html>\n\nNext we need some data. I'm just using something that looks like a matrix:\n<pre lang=\"javascript\">\nlet data = [\n  [0, 1],\n  [2, 4]\n]\n<\/pre>\n<p>Then we decide how big it should be. If you're going to use this inside React, it's nice to make a named div and size the div correctly up front, so that the screen doesn't flicker.<\/p>\n<pre lang=\"javascript\">\nlet margin = {top: 0, right: 0, bottom: 0, left: 0},\n    width = 200 - margin.left - margin.right,\n    height = 30 - margin.top - margin.bottom;\n\nlet histogramStyle = {\n  \"width\": width,\n  \"height\": height  \n};\n<\/pre>\n<p>We'll also need to define a selector that we can use to place the chart:<\/p>\n<pre lang=\"javascript\">\nlet divId = '#chart';\n<\/pre>\n<p>Now, we add the code to render the chart:<\/p>\n<pre lang=\"javascript\">\n    let x = d3.scale.linear()\n            .range([width, 0]),\n        y = d3.scale.linear()\n            .range([height, 0]);\n                \n    let \n      xAxis = d3.svg.axis()\n        .scale(x)\n        .orient(\"bottom\"),\n      yAxis = d3.svg.axis()\n        .scale(y)\n        .orient(\"left\");\n\n    let area = d3.svg.area()\n        .x((d) => x(d[0]))\n        .y0(height)\n        .y1((d) => y(d[1]));\n        \n    let svg = d3.select(divId).append(\"svg\")\n        .attr(\"width\", width + margin.left + margin.right)\n        .attr(\"height\", height + margin.top + margin.bottom)\n        .append(\"g\")\n        .attr(\"transform\", \"translate(\" + margin.left + \",\" + margin.top + \")\");\n\n    x.domain(d3.extent(data, (d) => d[0]));\n    y.domain([0, d3.max(data, (d) => d[1])]);\n\n    let brush = d3.svg.brush()\n        .x(x)\n        .on(\"brushend\", brushend);\n\n    svg.append(\"path\")\n       .datum(data)\n       .attr(\"class\", \"area\")\n       .attr(\"d\", area);\n        \n    svg.append(\"g\")\n       .attr(\"class\", \"x brush\")\n       .call(brush)\n       .selectAll(\"rect\")\n       .attr(\"y\", -6)\n       .attr(\"height\", height + 7);\n <\/pre>\n<p>To handle the user's selections, the chart lets you define a callback and you receive the min and max values, so you can call out to your code and do whatever you need. <\/p>\n<pre lang=\"javascript\">\nfunction brushed() {\n  x.domain(brush.empty() ? x.domain() : brush.extent());\n}\n\nfunction brushend() {        \n  if (self.props.facetHandler) {\n    self.props.facetHandler(brush.extent()[0], brush.extent[1]);\n  }\n}            \n<\/pre>\n<p>The callback gets run every time the user drags, not just when they are finished. One simple way to resolve this is to debounce the callback:<\/p>\n<pre lang=\"javascript\">\nlet _ = require('lodash');\nlet facetHandler = _.debounce(this.props.facetHandler, 250);\n<\/pre>\n","protected":false},"excerpt":{"rendered":"<p>Rendering a selectable chart with d3.js<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"om_disable_all_campaigns":false,"_monsterinsights_skip_tracking":false,"footnotes":""},"categories":[4],"tags":[136,302],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 4.9.9 - aioseo.com -->\n\t<meta name=\"description\" content=\"Rendering a selectable chart with d3.js\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"gary\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/www.garysieling.com\/blog\/making-selectable-d3-chart\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 4.9.9\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"Gary Sieling - Software Engineer\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"Making a selectable D3 chart - Gary Sieling\" \/>\n\t\t<meta property=\"og:description\" content=\"Rendering a selectable chart with d3.js\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/www.garysieling.com\/blog\/making-selectable-d3-chart\/\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2016-05-10T11:40:32+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2016-05-10T11:40:32+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Making a selectable D3 chart - Gary Sieling\" \/>\n\t\t<meta name=\"twitter:description\" content=\"Rendering a selectable chart with d3.js\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"BlogPosting\",\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/making-selectable-d3-chart\\\/#blogposting\",\"name\":\"Making a selectable D3 chart - Gary Sieling\",\"headline\":\"Making a selectable D3 chart\",\"author\":{\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/author\\\/gary\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/#organization\"},\"datePublished\":\"2016-05-10T11:40:32+00:00\",\"dateModified\":\"2016-05-10T11:40:32+00:00\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/making-selectable-d3-chart\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/making-selectable-d3-chart\\\/#webpage\"},\"articleSection\":\"Code Examples, d3, javascript\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/making-selectable-d3-chart\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.garysieling.com\\\/blog\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/category\\\/code-examples\\\/#listItem\",\"name\":\"Code Examples\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/category\\\/code-examples\\\/#listItem\",\"position\":2,\"name\":\"Code Examples\",\"item\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/category\\\/code-examples\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/making-selectable-d3-chart\\\/#listItem\",\"name\":\"Making a selectable D3 chart\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/making-selectable-d3-chart\\\/#listItem\",\"position\":3,\"name\":\"Making a selectable D3 chart\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/category\\\/code-examples\\\/#listItem\",\"name\":\"Code Examples\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/#organization\",\"name\":\"Gary Sieling\",\"description\":\"Software Engineer\",\"url\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/author\\\/gary\\\/#author\",\"url\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/author\\\/gary\\\/\",\"name\":\"gary\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/making-selectable-d3-chart\\\/#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/0be925276d848ffe98a6a9dc8cf33e67?s=96&d=identicon&r=g\",\"width\":96,\"height\":96,\"caption\":\"gary\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/making-selectable-d3-chart\\\/#webpage\",\"url\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/making-selectable-d3-chart\\\/\",\"name\":\"Making a selectable D3 chart - Gary Sieling\",\"description\":\"Rendering a selectable chart with d3.js\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/making-selectable-d3-chart\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/author\\\/gary\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/author\\\/gary\\\/#author\"},\"datePublished\":\"2016-05-10T11:40:32+00:00\",\"dateModified\":\"2016-05-10T11:40:32+00:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/\",\"name\":\"Gary Sieling\",\"description\":\"Software Engineer\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"Making a selectable D3 chart - Gary Sieling","description":"Rendering a selectable chart with d3.js","canonical_url":"https:\/\/www.garysieling.com\/blog\/making-selectable-d3-chart\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"BlogPosting","@id":"https:\/\/www.garysieling.com\/blog\/making-selectable-d3-chart\/#blogposting","name":"Making a selectable D3 chart - Gary Sieling","headline":"Making a selectable D3 chart","author":{"@id":"https:\/\/www.garysieling.com\/blog\/author\/gary\/#author"},"publisher":{"@id":"https:\/\/www.garysieling.com\/blog\/#organization"},"datePublished":"2016-05-10T11:40:32+00:00","dateModified":"2016-05-10T11:40:32+00:00","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/www.garysieling.com\/blog\/making-selectable-d3-chart\/#webpage"},"isPartOf":{"@id":"https:\/\/www.garysieling.com\/blog\/making-selectable-d3-chart\/#webpage"},"articleSection":"Code Examples, d3, javascript"},{"@type":"BreadcrumbList","@id":"https:\/\/www.garysieling.com\/blog\/making-selectable-d3-chart\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/www.garysieling.com\/blog#listItem","position":1,"name":"Home","item":"https:\/\/www.garysieling.com\/blog","nextItem":{"@type":"ListItem","@id":"https:\/\/www.garysieling.com\/blog\/category\/code-examples\/#listItem","name":"Code Examples"}},{"@type":"ListItem","@id":"https:\/\/www.garysieling.com\/blog\/category\/code-examples\/#listItem","position":2,"name":"Code Examples","item":"https:\/\/www.garysieling.com\/blog\/category\/code-examples\/","nextItem":{"@type":"ListItem","@id":"https:\/\/www.garysieling.com\/blog\/making-selectable-d3-chart\/#listItem","name":"Making a selectable D3 chart"},"previousItem":{"@type":"ListItem","@id":"https:\/\/www.garysieling.com\/blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/www.garysieling.com\/blog\/making-selectable-d3-chart\/#listItem","position":3,"name":"Making a selectable D3 chart","previousItem":{"@type":"ListItem","@id":"https:\/\/www.garysieling.com\/blog\/category\/code-examples\/#listItem","name":"Code Examples"}}]},{"@type":"Organization","@id":"https:\/\/www.garysieling.com\/blog\/#organization","name":"Gary Sieling","description":"Software Engineer","url":"https:\/\/www.garysieling.com\/blog\/"},{"@type":"Person","@id":"https:\/\/www.garysieling.com\/blog\/author\/gary\/#author","url":"https:\/\/www.garysieling.com\/blog\/author\/gary\/","name":"gary","image":{"@type":"ImageObject","@id":"https:\/\/www.garysieling.com\/blog\/making-selectable-d3-chart\/#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/0be925276d848ffe98a6a9dc8cf33e67?s=96&d=identicon&r=g","width":96,"height":96,"caption":"gary"}},{"@type":"WebPage","@id":"https:\/\/www.garysieling.com\/blog\/making-selectable-d3-chart\/#webpage","url":"https:\/\/www.garysieling.com\/blog\/making-selectable-d3-chart\/","name":"Making a selectable D3 chart - Gary Sieling","description":"Rendering a selectable chart with d3.js","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/www.garysieling.com\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/www.garysieling.com\/blog\/making-selectable-d3-chart\/#breadcrumblist"},"author":{"@id":"https:\/\/www.garysieling.com\/blog\/author\/gary\/#author"},"creator":{"@id":"https:\/\/www.garysieling.com\/blog\/author\/gary\/#author"},"datePublished":"2016-05-10T11:40:32+00:00","dateModified":"2016-05-10T11:40:32+00:00"},{"@type":"WebSite","@id":"https:\/\/www.garysieling.com\/blog\/#website","url":"https:\/\/www.garysieling.com\/blog\/","name":"Gary Sieling","description":"Software Engineer","inLanguage":"en-US","publisher":{"@id":"https:\/\/www.garysieling.com\/blog\/#organization"}}]},"og:locale":"en_US","og:site_name":"Gary Sieling - Software Engineer","og:type":"article","og:title":"Making a selectable D3 chart - Gary Sieling","og:description":"Rendering a selectable chart with d3.js","og:url":"https:\/\/www.garysieling.com\/blog\/making-selectable-d3-chart\/","article:published_time":"2016-05-10T11:40:32+00:00","article:modified_time":"2016-05-10T11:40:32+00:00","twitter:card":"summary_large_image","twitter:title":"Making a selectable D3 chart - Gary Sieling","twitter:description":"Rendering a selectable chart with d3.js"},"aioseo_meta_data":{"post_id":"4075","title":null,"description":null,"keywords":null,"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":null,"og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"","isEnabled":true},"graphs":[]},"schema_type":"default","schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"limit_modified_date":false,"created":"2023-02-04 16:54:32","updated":"2026-07-06 01:56:10","ai":null,"breadcrumb_settings":null,"seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/www.garysieling.com\/blog\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/www.garysieling.com\/blog\/category\/code-examples\/\" title=\"Code Examples\">Code Examples<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tMaking a selectable D3 chart\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/www.garysieling.com\/blog"},{"label":"Code Examples","link":"https:\/\/www.garysieling.com\/blog\/category\/code-examples\/"},{"label":"Making a selectable D3 chart","link":"https:\/\/www.garysieling.com\/blog\/making-selectable-d3-chart\/"}],"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/www.garysieling.com\/blog\/wp-json\/wp\/v2\/posts\/4075"}],"collection":[{"href":"https:\/\/www.garysieling.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.garysieling.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.garysieling.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.garysieling.com\/blog\/wp-json\/wp\/v2\/comments?post=4075"}],"version-history":[{"count":0,"href":"https:\/\/www.garysieling.com\/blog\/wp-json\/wp\/v2\/posts\/4075\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.garysieling.com\/blog\/wp-json\/wp\/v2\/media?parent=4075"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.garysieling.com\/blog\/wp-json\/wp\/v2\/categories?post=4075"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.garysieling.com\/blog\/wp-json\/wp\/v2\/tags?post=4075"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}