gitextract_xaxp2sb0/ ├── .codeclimate.yml ├── .eslintrc.js ├── .github/ │ ├── CODEOWNERS │ └── workflows/ │ ├── gh-pages.yml │ ├── pr-gate.yml │ └── publish.yml ├── .gitignore ├── README.md ├── app/ │ ├── .gitignore │ ├── README.md │ ├── components/ │ │ ├── Layout.tsx │ │ ├── Logo.tsx │ │ ├── NavLink.tsx │ │ ├── ParameterTable.tsx │ │ └── charts/ │ │ ├── Renderer.tsx │ │ ├── histogram/ │ │ │ └── Simple.tsx │ │ ├── line/ │ │ │ ├── Active.tsx │ │ │ ├── Aggregated.tsx │ │ │ ├── Baseline.tsx │ │ │ ├── Broken.tsx │ │ │ ├── Confidence.tsx │ │ │ ├── Multi.tsx │ │ │ └── Simple.tsx │ │ └── scatter/ │ │ ├── Categories.tsx │ │ ├── Complex.tsx │ │ └── Simple.tsx │ ├── data/ │ │ ├── confidenceBand.json │ │ ├── fakeUsers1.json │ │ ├── fakeUsers2.json │ │ ├── missing.json │ │ ├── points1.json │ │ ├── ufoDates.json │ │ └── ufoSightings.json │ ├── helpers/ │ │ └── format.ts │ ├── next-env.d.ts │ ├── next.config.js │ ├── package.json │ ├── pages/ │ │ ├── _app.tsx │ │ ├── _document.tsx │ │ ├── histogram.mdx │ │ ├── index.tsx │ │ ├── line.mdx │ │ ├── mg-api.mdx │ │ └── scatter.mdx │ ├── postcss.config.js │ ├── styles/ │ │ └── globals.css │ ├── tailwind.config.js │ └── tsconfig.json ├── lib/ │ ├── .gitignore │ ├── esbuild.mjs │ ├── package.json │ ├── src/ │ │ ├── charts/ │ │ │ ├── abstractChart.ts │ │ │ ├── histogram.ts │ │ │ ├── line.ts │ │ │ └── scatter.ts │ │ ├── components/ │ │ │ ├── abstractShape.ts │ │ │ ├── area.ts │ │ │ ├── axis.ts │ │ │ ├── delaunay.ts │ │ │ ├── legend.ts │ │ │ ├── line.ts │ │ │ ├── point.ts │ │ │ ├── rect.ts │ │ │ ├── rug.ts │ │ │ ├── scale.ts │ │ │ └── tooltip.ts │ │ ├── index.ts │ │ ├── mg.css │ │ └── misc/ │ │ ├── constants.ts │ │ ├── typings.ts │ │ └── utility.ts │ └── tsconfig.json └── package.json