defmodule PyrauiWeb.DocsLive.AnimatedChartDocs do use PyrauiWeb, :html def render(assigns) do ~H"""

Animated Chart

Animated Chart component with smooth transitions when data changes.

Animated Line Chart


              <.animated_chart type={:line} data={@chart_data} labels={@labels} />
            

Animated Bar Chart

Props

Prop Type Default Description
type atom - Chart type (:line, :bar, :area)
duration integer 1000 Animation duration in milliseconds
""" end end