/* global React */ const { useState, useMemo } = window.ReactHooks; function HomePage() { const [tab, setTab] = useState("Revenue"); const products = window.PRODUCTS; return (
{/* HERO */}
Available on Microsoft AppSource

Custom Power BI visuals
engineered for the enterprise.

Browse the catalog → See live demos 10 visuals · 70,000+ installs · 4.8★ average
{/* Chart Panel */}
{["Revenue", "Pipeline", "Retention"].map((t) => ( ))}
Horizon KPI · Live LIVE
{tab} this quarter
{tab === "Revenue" ? "$12.8M" : tab === "Pipeline" ? "$34.1M" : "94.2%"}
▲ {tab === "Revenue" ? "12.4%" : tab === "Pipeline" ? "8.9%" : "2.1pt"} vs prior
Against target
{tab === "Revenue" ? "104%" : tab === "Pipeline" ? "96%" : "107%"}
On track
Last refresh
2 min ago
Direct Query · Azure SQL
{/* STATS */}
10
Visuals shipped
70K+
Total installs
4.8★
Average rating
< 4h
Support reply
{/* FEATURED CATALOG */}
01 · Catalog All 10 visuals →

Ten visuals, each designed to do one thing exceptionally well.

No gimmicks, no scope creep. Each visual is maintained on its own roadmap, documented like an SDK, and supported directly by the engineers who built it.

{products.slice(0, 8).map((p) => (
{p.category}
{p.name}
{p.tagline}
v{p.version} ${p.price} / seat / mo
))}
{/* PROCESS */}
02 · Principles

The details that never make it into the marketing screenshots are the ones we obsess over.

TC builds visuals for teams that ship dashboards to boards, regulators and field operators. That means accessibility, print fidelity, and rigorous performance on datasets that don't fit on a laptop.

{[ ["A01", "Certified build pipeline", "Every visual goes through the Microsoft certification path and is code-signed before release."], ["A02", "Accessibility to WCAG 2.2 AA", "Color-blind safe defaults, keyboard navigation, and screen-reader summaries in every visual."], ["A03", "Direct-query performant", "Tested on billion-row models. Minimal re-renders, debounced filters, and GPU-accelerated rendering where it counts."], ["A04", "Versioned & pinned", "Lock to a version, upgrade on your schedule. Release notes for every patch, not just majors."], ["A05", "Print & export parity", "What you see on the dashboard is what lands in the PDF export — sub-pixel rendering included."], ["A06", "Supported by engineers", "Support is triaged by the people who wrote the code. Median response time: under four hours."] ].map(([n, t, d]) => (
{n} {t}

{d}

))}
{/* LOGO STRIP */}
03 · Trusted by data teams at
NORTHWIND ENERGY ACME HEALTH HELIX BANK CONTOSO RETAIL FABRIKAM LOGISTICS MERIDIAN CAPITAL ATLAS GROUP
{/* CTA */}
Get started

Pilot a single visual, free for 30 days.

Start a pilot → Talk to sales
); } window.HomePage = HomePage;