diff --git a/.gitignore b/.gitignore
index e556330..9862b24 100644
--- a/.gitignore
+++ b/.gitignore
@@ -60,8 +60,6 @@ typings/
# next.js build output
.next
-# npm build output
-dist
-docs/assets/
-.DS_Store
\ No newline at end of file
+
+.DS_Store
diff --git a/.idea/vcs.xml b/.idea/vcs.xml
new file mode 100644
index 0000000..94a25f7
--- /dev/null
+++ b/.idea/vcs.xml
@@ -0,0 +1,6 @@
+
+
+
+
@@ -22,6 +34,7 @@
GitHub-inspired modern, intuitive and responsive charts with zero dependencies
- + Explore Demos » - + Edit at CodeSandbox » - + Documentation »
-
+
GitHub-inspired simple and modern SVG charts for the web
with zero dependencies.
Click or use arrow keys to navigate data points
@@ -38,7 +38,7 @@ redirect_to: "https://influxframework.com/charts" <!--HTML-->
<div id="chart"></div>
// Javascript
- let chart = new influxframework.Chart( "#chart", { // or DOM element
+ let chart = new xhiveframework.Chart( "#chart", { // or DOM element
data: {
labels: ["12am-3am", "3am-6am", "6am-9am", "9am-12pm",
"12pm-3pm", "3pm-6pm", "6pm-9pm", "9pm-12am"],
@@ -162,7 +162,7 @@ redirect_to: "https://influxframework.com/charts"
let heatmap = new influxframework.Chart("#heatmap", {
+ let heatmap = new xhiveframework.Chart("#heatmap", {
type: 'heatmap',
title: "Monthly Distribution",
data: {
@@ -183,8 +183,8 @@ redirect_to: "https://influxframework.com/charts"
Demo
- See the Pen InfluxFramework Charts Demo
+ data-user="pratu16x7" data-embed-version="2" data-pen-title="XhiveFramework Charts Demo" class="codepen">
+ See the Pen XhiveFramework Charts Demo
by Prateeksha Singh (@pratu16x7) on
CodePen.
@@ -269,36 +269,36 @@ redirect_to: "https://influxframework.com/charts"
Install
Install via npm
- npm install influxframework-charts
+ npm install xhiveframework-charts
And include it in your project
- import { Chart } from "influxframework-charts"
+ import { Chart } from "xhiveframework-charts"
(for ES6+ import the ESModule from the dist folder)
- import { Chart } from "influxframework-charts/dist/influxframework-charts.esm.js"
+ import { Chart } from "xhiveframework-charts/dist/xhiveframework-charts.esm.js"
... or include it directly in your HTML
- <script src="https://unpkg.com/influxframework-charts@1.1.0"></script>
+ <script src="https://unpkg.com/xhiveframework-charts@1.1.0"></script>
Use as:
new Chart(); // ES6 module
// or
- new influxframework.Chart(); // Browser
+ new xhiveframework.Chart(); // Browser
-
+
- View on GitHub
+ View on GitHub
License: MIT
-
-