From 88a7528749c4c27603a0d9aaeae7655941d0b05c Mon Sep 17 00:00:00 2001 From: Yoshiya Hinosawa Date: Sun, 25 Mar 2018 16:11:43 +0900 Subject: [PATCH] fix: fix wrong versions of d3 in samples (#2321) --- extensions/chart-bubble/index.html | 2 +- htdocs/js/samples/requirejs.js | 2 +- htdocs/samples/api_category.html | 2 +- htdocs/samples/axes_x_localtime.html | 2 +- htdocs/samples/chart_step_category.html | 2 +- htdocs/samples/plugin.html | 3 +-- htdocs/samples/zoom_reduction.html | 6 +++--- 7 files changed, 9 insertions(+), 10 deletions(-) diff --git a/extensions/chart-bubble/index.html b/extensions/chart-bubble/index.html index 9ee7146..67090e8 100644 --- a/extensions/chart-bubble/index.html +++ b/extensions/chart-bubble/index.html @@ -5,7 +5,7 @@
- + + + + + - + @@ -18,7 +18,7 @@

Hackathon May 2014

By Dan-el Khen

Rendering graphs in the browser has many advantages, the downside is that takes a long time to render when having large datasets.

-

This feature allows you reduces the dataset according to your current zoom level. +

This feature allows you reduces the dataset according to your current zoom level. It allows the developer to implement the reduction algorithm in a simple function that accepts an array of values, and returns a reduced single value. The default reducer will take the first item, but avg/sum/first/last or any other algorithm is simple to implement.