mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-08-02 20:15:22 +02:00
8 lines
357 B
Text
8 lines
357 B
Text
|
<%# locals: (series:) %>
|
||
|
<% if series %>
|
||
|
<div data-controller="line-chart" id="lineChart" class="w-full h-full" data-line-chart-series-value="<%= series.serialize_for_d3_chart %>"></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 %>
|