Trend Chart Points

This commit is contained in:
HojouFotytu 2024-02-04 12:12:39 +09:00
parent f8573661c9
commit 6591350142
1 changed files with 2 additions and 0 deletions

View File

@ -349,6 +349,7 @@
<script type="text/javascript"> <script type="text/javascript">
(function ($) { (function ($) {
'use strict'; 'use strict';
// $('head').append('<style>.nv-point { stroke-width: 1px; }</style>');
$('[role="tooltip"]').remove(); $('[role="tooltip"]').remove();
$('[data-toggle="tooltip"]').tooltip(); $('[data-toggle="tooltip"]').tooltip();
$('.text-autocolor').autocolor(false); $('.text-autocolor').autocolor(false);
@ -362,6 +363,7 @@
trendChart = nv.models.lineChart(); trendChart = nv.models.lineChart();
var height = 300; var height = 300;
trendChart.useInteractiveGuideline(true); trendChart.useInteractiveGuideline(true);
trendChart.pointSize(0.25); // Set the point size to a smaller value
trendChart.xAxis.tickFormat(function (d) { return d3.time.format('%H:%M')(new Date(d)); }); trendChart.xAxis.tickFormat(function (d) { return d3.time.format('%H:%M')(new Date(d)); });
trendChart.yAxis.axisLabel('Trend %').tickFormat(d3.format(',.2f')); trendChart.yAxis.axisLabel('Trend %').tickFormat(d3.format(',.2f'));