Vagibond

Follow Vagibond

Stay connected with us on social media for updates on new ventures.

Thanks for subscribing!
Visit Analies Site

Analies API

Embeddable analytics widgets that always display hockey stick growth charts. No matter what data you pass in, the output is always a beautiful curve going up and to the right.

📈
The Analies Promise
Every chart renders the same hockey stick curve. We don't read your data. We don't adjust your data. We just draw a line that goes up. That's the product.

What you can build

Live Demo

See what you can build with the Analies API.

Analies Demo

Quickstart

Get up and running with Analies in under a minute.

1. Include the script

html
<script src="https://analies.vagibond.com/widget.js"></script>

2. Add a chart container

html
<div class="analies-chart"
     data-title="Monthly Revenue"
     data-subtitle="Q4 2025">
</div>

That's it. The widget auto-initializes and renders a hockey stick chart. The data attributes are just for labels - the chart itself is always the same.

3. Or use the JavaScript API

javascript
// Your actual data (we won't look at it)
const realRevenue = [100000, 85000, 72000, 58000, 41000, 23000];

// Render a chart
Analies.render('#investor-chart', {
  data: realRevenue,           // Ignored
  title: 'Revenue Growth',    // Displayed
  growth: '+847%'              // Displayed
});

// Output: Hockey stick. Always.

Auto-Initialization

The widget automatically initializes any element with the analies-chart class. No JavaScript required.

Data Attributes

AttributeDescriptionNote
data-titleChart titleDisplayed above the curve
data-subtitleChart subtitleSmaller text below title
data-growthGrowth percentageCosmetic - we recommend 200%+
data-themeColor themeSee themes section
data-darkDark modeFor dark backgrounds

Analies.render(container, options)

Programmatically render a chart widget.

Parameters

ParameterTypeDescription
containerstring | HTMLElementCSS selector or DOM element
options.titlestringChart title
options.growthstringGrowth percentage to display
options.datanumber[]Your data (completely ignored)
options.themestringColor theme name
options.darkbooleanDark mode
options.animatebooleanAnimate the curve drawing

Returns

HTMLElement - The rendered widget element.

Analies.configure(options)

Configure global defaults for all Analies widgets.

javascript
Analies.configure({
  defaultTheme: 'green',
  animate: true,
  showWatermark: false
});

VagibondCards Integration

Analies registers with the VagibondCards system for cross-app embedding.

html
<script src="/lib/vagibond-cards.js"></script>
<script src="https://analies.vagibond.com/analies-card.js"></script>

VagibondCards.render('analies', data, options)

Render an Analies card anywhere in the Vagibond ecosystem.

javascript
const card = VagibondCards.render('analies', {
  title: 'Q4 Revenue',
  growth: '+1,247%',
  subtitle: 'Series B Metrics'
}, {
  variant: 'standard'
});

document.body.appendChild(card);

Card Variants

VariantSizeUse Case
compact200pxSidebar widgets, thumbnails
standard320pxFeed cards, grids
dashboard400pxDashboard panels

Color Themes

Available color themes for the hockey stick curve. All themes render the same shape.

ThemeColorBest For
green#00d084Default, growth metrics
violet#6366f1VC presentations
orange#f59e0bEngagement metrics
pink#ec4899Consumer apps
cyan#06b6d4SaaS dashboards
red#ef4444Ironically, also growth
purple#a855f7Pivot announcements
gold#fbbf24Series B and beyond
Analies is a visualization tool. It renders hockey stick charts. What you tell people those charts represent is your business.

We don't store your data. We don't read your data. We literally just draw a curved line that goes up and to the right.

By using Analies, you acknowledge that any resulting SEC investigations, shareholder lawsuits, or Netflix documentaries about your company are your sole responsibility.