├── .babelrc ├── .github └── CODEOWNERS ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── dist ├── advanced_table.js ├── aster_plot.js ├── bubble_chart.js ├── calendar_chart.js ├── cartoon.js ├── chord.js ├── collapsible_tree.js ├── gauge_chart.js ├── grouped_card.js ├── hello_world.js ├── hello_world_react.js ├── image_carousel.js ├── liquid_fill_gauge.js ├── multiple_gauge_charts.js ├── sales_heatmap.js ├── sales_waterfall.js ├── sankey.js ├── spider.js ├── subtotal.js ├── sunburst.js ├── treemap.js └── v1_common.js ├── docs ├── api_reference.md ├── custom_color_palette.md └── getting_started.md ├── package.json ├── src ├── common │ ├── common-entry.js │ └── d3.v4.js └── examples │ ├── README.md │ ├── advanced_table │ ├── README.md │ ├── advanced_table.js │ ├── ag-theme-looker.css │ ├── globalConfig.js │ ├── options.js │ └── pivotHeader.js │ ├── chord │ ├── README.md │ ├── chord.mov │ ├── chord.png │ └── chord.ts │ ├── collapsible_tree │ ├── README.md │ ├── collapsible-tree.mov │ ├── collapsible-tree.png │ └── collapsible_tree.ts │ ├── common │ └── utils.ts │ ├── hello_world │ ├── hello_world.js │ ├── hello_world.png │ └── hello_world_error.png │ ├── hello_world_react │ ├── hello.js │ ├── hello_world.png │ ├── hello_world_error.png │ └── hello_world_react.js │ ├── image_carousel │ ├── README.md │ ├── c3_image_carousel.png │ ├── constants.js │ ├── imageViewer.js │ └── image_carousel.js │ ├── liquid_fill_gauge │ ├── README.md │ ├── liquid_fill_gauge.js │ ├── liquid_fill_gauge.mov │ ├── liquid_fill_gauge.png │ └── liquid_fill_gauge.ts │ ├── sankey │ ├── README.md │ ├── sankey.mov │ ├── sankey.png │ └── sankey.ts │ ├── subtotal │ ├── README.md │ ├── subtotal.png │ ├── subtotal.ts │ └── types.d.ts │ ├── sunburst │ ├── README.md │ ├── sunburst.mov │ ├── sunburst.png │ └── sunburst.ts │ ├── treemap │ ├── README.md │ ├── treemap.mov │ ├── treemap.png │ └── treemap.ts │ └── types │ └── types.ts ├── test ├── looker_stub.js └── test.js ├── tsconfig.json ├── tslint.json ├── webpack.config.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/custom_visualizations_v2/HEAD/.babelrc -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/custom_visualizations_v2/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | demo/build 3 | node_modules 4 | .DS_Store 5 | .vscode 6 | yarn-error.log 7 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/custom_visualizations_v2/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/custom_visualizations_v2/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/custom_visualizations_v2/HEAD/README.md -------------------------------------------------------------------------------- /dist/advanced_table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/custom_visualizations_v2/HEAD/dist/advanced_table.js -------------------------------------------------------------------------------- /dist/aster_plot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/custom_visualizations_v2/HEAD/dist/aster_plot.js -------------------------------------------------------------------------------- /dist/bubble_chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/custom_visualizations_v2/HEAD/dist/bubble_chart.js -------------------------------------------------------------------------------- /dist/calendar_chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/custom_visualizations_v2/HEAD/dist/calendar_chart.js -------------------------------------------------------------------------------- /dist/cartoon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/custom_visualizations_v2/HEAD/dist/cartoon.js -------------------------------------------------------------------------------- /dist/chord.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/custom_visualizations_v2/HEAD/dist/chord.js -------------------------------------------------------------------------------- /dist/collapsible_tree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/custom_visualizations_v2/HEAD/dist/collapsible_tree.js -------------------------------------------------------------------------------- /dist/gauge_chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/custom_visualizations_v2/HEAD/dist/gauge_chart.js -------------------------------------------------------------------------------- /dist/grouped_card.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/custom_visualizations_v2/HEAD/dist/grouped_card.js -------------------------------------------------------------------------------- /dist/hello_world.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/custom_visualizations_v2/HEAD/dist/hello_world.js -------------------------------------------------------------------------------- /dist/hello_world_react.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/custom_visualizations_v2/HEAD/dist/hello_world_react.js -------------------------------------------------------------------------------- /dist/image_carousel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/custom_visualizations_v2/HEAD/dist/image_carousel.js -------------------------------------------------------------------------------- /dist/liquid_fill_gauge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/custom_visualizations_v2/HEAD/dist/liquid_fill_gauge.js -------------------------------------------------------------------------------- /dist/multiple_gauge_charts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/custom_visualizations_v2/HEAD/dist/multiple_gauge_charts.js -------------------------------------------------------------------------------- /dist/sales_heatmap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/custom_visualizations_v2/HEAD/dist/sales_heatmap.js -------------------------------------------------------------------------------- /dist/sales_waterfall.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/custom_visualizations_v2/HEAD/dist/sales_waterfall.js -------------------------------------------------------------------------------- /dist/sankey.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/custom_visualizations_v2/HEAD/dist/sankey.js -------------------------------------------------------------------------------- /dist/spider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/custom_visualizations_v2/HEAD/dist/spider.js -------------------------------------------------------------------------------- /dist/subtotal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/custom_visualizations_v2/HEAD/dist/subtotal.js -------------------------------------------------------------------------------- /dist/sunburst.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/custom_visualizations_v2/HEAD/dist/sunburst.js -------------------------------------------------------------------------------- /dist/treemap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/custom_visualizations_v2/HEAD/dist/treemap.js -------------------------------------------------------------------------------- /dist/v1_common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/custom_visualizations_v2/HEAD/dist/v1_common.js -------------------------------------------------------------------------------- /docs/api_reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/custom_visualizations_v2/HEAD/docs/api_reference.md -------------------------------------------------------------------------------- /docs/custom_color_palette.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/custom_visualizations_v2/HEAD/docs/custom_color_palette.md -------------------------------------------------------------------------------- /docs/getting_started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/custom_visualizations_v2/HEAD/docs/getting_started.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/custom_visualizations_v2/HEAD/package.json -------------------------------------------------------------------------------- /src/common/common-entry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/custom_visualizations_v2/HEAD/src/common/common-entry.js -------------------------------------------------------------------------------- /src/common/d3.v4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/custom_visualizations_v2/HEAD/src/common/d3.v4.js -------------------------------------------------------------------------------- /src/examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/custom_visualizations_v2/HEAD/src/examples/README.md -------------------------------------------------------------------------------- /src/examples/advanced_table/README.md: -------------------------------------------------------------------------------- 1 | # Advanced Table 2 | -------------------------------------------------------------------------------- /src/examples/advanced_table/advanced_table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/custom_visualizations_v2/HEAD/src/examples/advanced_table/advanced_table.js -------------------------------------------------------------------------------- /src/examples/advanced_table/ag-theme-looker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/custom_visualizations_v2/HEAD/src/examples/advanced_table/ag-theme-looker.css -------------------------------------------------------------------------------- /src/examples/advanced_table/globalConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/custom_visualizations_v2/HEAD/src/examples/advanced_table/globalConfig.js -------------------------------------------------------------------------------- /src/examples/advanced_table/options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/custom_visualizations_v2/HEAD/src/examples/advanced_table/options.js -------------------------------------------------------------------------------- /src/examples/advanced_table/pivotHeader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/custom_visualizations_v2/HEAD/src/examples/advanced_table/pivotHeader.js -------------------------------------------------------------------------------- /src/examples/chord/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/custom_visualizations_v2/HEAD/src/examples/chord/README.md -------------------------------------------------------------------------------- /src/examples/chord/chord.mov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/custom_visualizations_v2/HEAD/src/examples/chord/chord.mov -------------------------------------------------------------------------------- /src/examples/chord/chord.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/custom_visualizations_v2/HEAD/src/examples/chord/chord.png -------------------------------------------------------------------------------- /src/examples/chord/chord.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/custom_visualizations_v2/HEAD/src/examples/chord/chord.ts -------------------------------------------------------------------------------- /src/examples/collapsible_tree/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/custom_visualizations_v2/HEAD/src/examples/collapsible_tree/README.md -------------------------------------------------------------------------------- /src/examples/collapsible_tree/collapsible-tree.mov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/custom_visualizations_v2/HEAD/src/examples/collapsible_tree/collapsible-tree.mov -------------------------------------------------------------------------------- /src/examples/collapsible_tree/collapsible-tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/custom_visualizations_v2/HEAD/src/examples/collapsible_tree/collapsible-tree.png -------------------------------------------------------------------------------- /src/examples/collapsible_tree/collapsible_tree.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/custom_visualizations_v2/HEAD/src/examples/collapsible_tree/collapsible_tree.ts -------------------------------------------------------------------------------- /src/examples/common/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/custom_visualizations_v2/HEAD/src/examples/common/utils.ts -------------------------------------------------------------------------------- /src/examples/hello_world/hello_world.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/custom_visualizations_v2/HEAD/src/examples/hello_world/hello_world.js -------------------------------------------------------------------------------- /src/examples/hello_world/hello_world.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/custom_visualizations_v2/HEAD/src/examples/hello_world/hello_world.png -------------------------------------------------------------------------------- /src/examples/hello_world/hello_world_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/custom_visualizations_v2/HEAD/src/examples/hello_world/hello_world_error.png -------------------------------------------------------------------------------- /src/examples/hello_world_react/hello.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/custom_visualizations_v2/HEAD/src/examples/hello_world_react/hello.js -------------------------------------------------------------------------------- /src/examples/hello_world_react/hello_world.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/custom_visualizations_v2/HEAD/src/examples/hello_world_react/hello_world.png -------------------------------------------------------------------------------- /src/examples/hello_world_react/hello_world_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/custom_visualizations_v2/HEAD/src/examples/hello_world_react/hello_world_error.png -------------------------------------------------------------------------------- /src/examples/hello_world_react/hello_world_react.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/custom_visualizations_v2/HEAD/src/examples/hello_world_react/hello_world_react.js -------------------------------------------------------------------------------- /src/examples/image_carousel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/custom_visualizations_v2/HEAD/src/examples/image_carousel/README.md -------------------------------------------------------------------------------- /src/examples/image_carousel/c3_image_carousel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/custom_visualizations_v2/HEAD/src/examples/image_carousel/c3_image_carousel.png -------------------------------------------------------------------------------- /src/examples/image_carousel/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/custom_visualizations_v2/HEAD/src/examples/image_carousel/constants.js -------------------------------------------------------------------------------- /src/examples/image_carousel/imageViewer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/custom_visualizations_v2/HEAD/src/examples/image_carousel/imageViewer.js -------------------------------------------------------------------------------- /src/examples/image_carousel/image_carousel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/custom_visualizations_v2/HEAD/src/examples/image_carousel/image_carousel.js -------------------------------------------------------------------------------- /src/examples/liquid_fill_gauge/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/custom_visualizations_v2/HEAD/src/examples/liquid_fill_gauge/README.md -------------------------------------------------------------------------------- /src/examples/liquid_fill_gauge/liquid_fill_gauge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/custom_visualizations_v2/HEAD/src/examples/liquid_fill_gauge/liquid_fill_gauge.js -------------------------------------------------------------------------------- /src/examples/liquid_fill_gauge/liquid_fill_gauge.mov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/custom_visualizations_v2/HEAD/src/examples/liquid_fill_gauge/liquid_fill_gauge.mov -------------------------------------------------------------------------------- /src/examples/liquid_fill_gauge/liquid_fill_gauge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/custom_visualizations_v2/HEAD/src/examples/liquid_fill_gauge/liquid_fill_gauge.png -------------------------------------------------------------------------------- /src/examples/liquid_fill_gauge/liquid_fill_gauge.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/custom_visualizations_v2/HEAD/src/examples/liquid_fill_gauge/liquid_fill_gauge.ts -------------------------------------------------------------------------------- /src/examples/sankey/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/custom_visualizations_v2/HEAD/src/examples/sankey/README.md -------------------------------------------------------------------------------- /src/examples/sankey/sankey.mov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/custom_visualizations_v2/HEAD/src/examples/sankey/sankey.mov -------------------------------------------------------------------------------- /src/examples/sankey/sankey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/custom_visualizations_v2/HEAD/src/examples/sankey/sankey.png -------------------------------------------------------------------------------- /src/examples/sankey/sankey.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/custom_visualizations_v2/HEAD/src/examples/sankey/sankey.ts -------------------------------------------------------------------------------- /src/examples/subtotal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/custom_visualizations_v2/HEAD/src/examples/subtotal/README.md -------------------------------------------------------------------------------- /src/examples/subtotal/subtotal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/custom_visualizations_v2/HEAD/src/examples/subtotal/subtotal.png -------------------------------------------------------------------------------- /src/examples/subtotal/subtotal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/custom_visualizations_v2/HEAD/src/examples/subtotal/subtotal.ts -------------------------------------------------------------------------------- /src/examples/subtotal/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/custom_visualizations_v2/HEAD/src/examples/subtotal/types.d.ts -------------------------------------------------------------------------------- /src/examples/sunburst/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/custom_visualizations_v2/HEAD/src/examples/sunburst/README.md -------------------------------------------------------------------------------- /src/examples/sunburst/sunburst.mov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/custom_visualizations_v2/HEAD/src/examples/sunburst/sunburst.mov -------------------------------------------------------------------------------- /src/examples/sunburst/sunburst.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/custom_visualizations_v2/HEAD/src/examples/sunburst/sunburst.png -------------------------------------------------------------------------------- /src/examples/sunburst/sunburst.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/custom_visualizations_v2/HEAD/src/examples/sunburst/sunburst.ts -------------------------------------------------------------------------------- /src/examples/treemap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/custom_visualizations_v2/HEAD/src/examples/treemap/README.md -------------------------------------------------------------------------------- /src/examples/treemap/treemap.mov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/custom_visualizations_v2/HEAD/src/examples/treemap/treemap.mov -------------------------------------------------------------------------------- /src/examples/treemap/treemap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/custom_visualizations_v2/HEAD/src/examples/treemap/treemap.png -------------------------------------------------------------------------------- /src/examples/treemap/treemap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/custom_visualizations_v2/HEAD/src/examples/treemap/treemap.ts -------------------------------------------------------------------------------- /src/examples/types/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/custom_visualizations_v2/HEAD/src/examples/types/types.ts -------------------------------------------------------------------------------- /test/looker_stub.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/custom_visualizations_v2/HEAD/test/looker_stub.js -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/custom_visualizations_v2/HEAD/test/test.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/custom_visualizations_v2/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/custom_visualizations_v2/HEAD/tslint.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/custom_visualizations_v2/HEAD/webpack.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/custom_visualizations_v2/HEAD/yarn.lock --------------------------------------------------------------------------------