Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/fresh_charts/deps.ts>ChartJs.RadialLinearScaleOptions

A server-side-rendered charting library for Fresh
Go to Latest
type alias ChartJs.RadialLinearScaleOptions
import { type ChartJs } from "https://deno.land/x/fresh_charts@0.3.0/deps.ts";
const { RadialLinearScaleOptions } = ChartJs;
definition: CoreScaleOptions & { backgroundColor: Color; animate: boolean; startAngle: number; angleLines: { display: boolean; color: Scriptable<Color, ScriptableScaleContext>; lineWidth: Scriptable<number, ScriptableScaleContext>; borderDash: Scriptable<number[], ScriptableScaleContext>; borderDashOffset: Scriptable<number, ScriptableScaleContext>; }; beginAtZero: boolean; grid: Partial<GridLineOptions>; min: number; max: number; pointLabels: { backdropColor: Scriptable<Color, ScriptableScalePointLabelContext>; backdropPadding: Scriptable<number | ChartArea, ScriptableScalePointLabelContext>; borderRadius: Scriptable<number | BorderRadius, ScriptableScalePointLabelContext>; display: boolean | "auto"; color: Scriptable<Color, ScriptableScalePointLabelContext>; font: ScriptableAndScriptableOptions<Partial<FontSpec>, ScriptableScalePointLabelContext>; callback: (label: string, index: number) =>
| string
| string[]
| number
| number[]
; padding: Scriptable<number, ScriptableScalePointLabelContext>; centerPointLabels: boolean; }; suggestedMax: number; suggestedMin: number; ticks: RadialTickOptions; }