Chartwerk Line Pod
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
rozetko d89b80a180 Merge pull request 'typ for mousemove' (#66) from types-for-mousemove into main 2 weeks ago
.yarn/releases yarn migrate to 2 3 years ago
build basic react component implementatino is sep project 9 months ago
examples 0.7.7 && handle context menu 4 months ago
react optimise excludes in libs in webpack 9 months ago
src Merge branch 'main' of code.corpglory.net:chartwerk/line-pod into types-for-mousemove 2 weeks ago
.gitignore upd chartwerk core to 0.6.25 5 months ago
.yarnrc.yml yarn migrate to 2 3 years ago
LICENSE license + dep to core 3 years ago
README.md rename demo->basic, live and vertical && update readme 9 months ago
package.json 0.7.8 && render segments if exists 3 months ago
tsconfig.json basic react component implementatino is sep project 9 months ago
yarn.lock fix renderDots not working for right y-axis 5 months ago

README.md

Chartwerk Line Pod

Including

Browser

Script tag

<script src="https://unpkg.com/@chartwerk/line-pod@latest/dist/index.dev.js" type="text/javascript"></script>

Example

<div id="line-chart" class="chart-block" style="width: 100%; height: 400px;"></div>

<script src="https://unpkg.com/@chartwerk/line-pod@latest/dist/index.dev.js" type="text/javascript"></script>
<script>
  new LinePod(document.getElementById('yourDivId', yourData, yourOptions)).render();
</script>

Other examples

Development

If you want to link core then clone it to same directory and then run

yarn link ../core

but don't add resolutions logic to package.json

then run

yarn install
yarn dev