package components
templ barChart(id string, data []float64, labels []string, tooltip string, title string, scaleLabelX string, scaleLabelY string) {
@templ.JSFuncCall(
"barChart",
id,
data,
labels,
tooltip,
title,
scaleLabelX,
scaleLabelY,
)
}
templ barLineChart(id string, data []float64, labels []string, tooltip string, title string, scaleLabelX string, scaleLabelY string) {
@templ.JSFuncCall(
"barLineChart",
id,
data,
labels,
tooltip,
title,
scaleLabelX,
scaleLabelY,
)
}
templ pieChart(id string, data []float64, labels []string, tooltip string, title string, scaleLabelX string, scaleLabelY string) {
@templ.JSFuncCall(
"pieChart",
id,
data,
labels,
tooltip,
title,
scaleLabelX,
scaleLabelY,
)
}
templ doughnutChart(id string, data []float64, labels []string, tooltip string, title string, scaleLabelX string, scaleLabelY string) {
@templ.JSFuncCall(
"doughnutChart",
id,
data,
labels,
tooltip,
title,
scaleLabelX,
scaleLabelY,
)
}
templ polarChart(id string, data []float64, labels []string, tooltip string, title string, scaleLabelX string, scaleLabelY string) {
@templ.JSFuncCall(
"polarChart",
id,
data,
labels,
tooltip,
title,
scaleLabelX,
scaleLabelY,
)
}