Dean Farrell

Results 5 comments of Dean Farrell

Thanks, would this apply to the choropleth chart as well? I can't seem to come up with any sane way to add the required overlay option: overlayGeoJson(json, name, keyAccessor) -...

Answered my own question. This does work: $scope.postMapSetup = function(chart) { chart.colorCalculator(function (d) { return d ? chart.colors()(d) : '#ccc'; }); chart.overlayGeoJson(m.features, "state", function(d) { return d.properties.name; }); }; Thanks...

Tom, The issue appears to be that invalid clip path id's are being generated if you don't specify an id for a chart. For example, #1-clip is being generated for...

@gwiedeman @seanaery I've updated it to only show one expand button at a time. It would have been more straightforward in arclight 0.x, but with the move to turbo-frames in...

PR to add this functionality: https://github.com/projectblacklight/arclight/pull/1438