titles

titles is an object within the theme property for overriding the fontFamily for chart titles.

Default Value

import Vizzly, { type VizzlyTheming } from "@vizzly/dashboard"
 
export function Dashboard() {
  const theme: VizzlyTheming.Base = {
    titles: {
      // Default Value
      fontFamily: "Inter, sans-serif",
    },
  }
 
  return (
    <Vizzly.Dashboard
      // ...
      theme={theme}
    />
  )
}