mirror of
https://github.com/we-promise/sure.git
synced 2026-04-19 03:54:08 +00:00
9 lines
343 B
Plaintext
9 lines
343 B
Plaintext
<%# locals: (series:) %>
|
|
<% if series %>
|
|
<div data-controller="line-chart" id="lineChart" class="w-full h-full" data-line-chart-series-value="<%= series.to_json %>"></div>
|
|
<% else %>
|
|
<div class="w-full h-full flex items-center justify-center">
|
|
<p class="text-gray-500">No data available for the selected period.</p>
|
|
</div>
|
|
<% end %>
|