a876c121ef
- Implement calculate_shot_accuracy() function in tv_app.py to extract individual shot values from tournament participant data - Aggregate shot accuracy data (0-10) by tournament type (4_targets, 20_targets, 40_targets) in analyze_player_performance() - Update modern_player_stats.html to load shot accuracy data directly from template context instead of API - Add tournament type mapping between display names (40 Targets) and backend keys (40_targets) - Implement CSS-based bar chart visualization that displays shot distribution with proper color gradients - Remove unused async loadShotAccuracyData() API fetch and replace with direct template data access - Data is now properly aggregated across all tournaments for each player and format type 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1376 lines
50 KiB
HTML
1376 lines
50 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>{{ player.name }} - Player Stats</title>
|
|
<link rel="stylesheet" href="/static/css/base.css">
|
|
<link rel="stylesheet" href="/static/css/navbar.css">
|
|
<link rel="stylesheet" href="/static/css/buttons.css">
|
|
<link rel="stylesheet" href="/static/css/components.css">
|
|
<link rel="stylesheet" href="/static/css/responsive.css">
|
|
<script src="/static/js/chart.min.js"></script>
|
|
<style>
|
|
/* Player stats specific styles */
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
font-family: Arial, sans-serif;
|
|
background: #f5f5f5;
|
|
min-height: 100vh;
|
|
color: #333;
|
|
}
|
|
|
|
/* Standardized Container */
|
|
.container {
|
|
max-width: 1400px;
|
|
margin: 0 auto;
|
|
padding: 20px;
|
|
}
|
|
|
|
/* Stats Overview */
|
|
.stats-badges {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
|
|
gap: 15px;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.stat-badge {
|
|
background: white;
|
|
border-radius: 12px;
|
|
padding: 15px;
|
|
text-align: center;
|
|
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
|
|
border: 1px solid #e9ecef;
|
|
transition: transform 0.3s ease;
|
|
}
|
|
|
|
.stat-badge:hover {
|
|
transform: translateY(-2px);
|
|
}
|
|
|
|
.stat-icon {
|
|
font-size: 1.5rem;
|
|
margin-bottom: 8px;
|
|
display: block;
|
|
}
|
|
|
|
.stat-number {
|
|
font-size: 1.5rem;
|
|
font-weight: bold;
|
|
color: #333;
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
.stat-label {
|
|
color: #666;
|
|
font-size: 0.75rem;
|
|
font-weight: 500;
|
|
}
|
|
|
|
/* Charts Section */
|
|
.charts-section {
|
|
min-height: 450px;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
/* Stats Panel */
|
|
.stats-panel {
|
|
background: white;
|
|
border-radius: 12px;
|
|
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
|
|
padding: 18px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.panel-title {
|
|
font-size: 1.1rem;
|
|
font-weight: bold;
|
|
color: #333;
|
|
margin-bottom: 15px;
|
|
border-bottom: 2px solid #007bff;
|
|
padding-bottom: 5px;
|
|
}
|
|
|
|
.stats-grid {
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
gap: 10px;
|
|
flex: 1;
|
|
}
|
|
|
|
.stat-item {
|
|
text-align: center;
|
|
padding: 12px 8px;
|
|
background: #f8f9fa;
|
|
border-radius: 8px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
}
|
|
|
|
.stat-value {
|
|
font-size: 1.4rem;
|
|
font-weight: bold;
|
|
color: #007bff;
|
|
margin-bottom: 3px;
|
|
}
|
|
|
|
.stat-label {
|
|
font-size: 0.7rem;
|
|
color: #666;
|
|
text-transform: uppercase;
|
|
font-weight: 500;
|
|
}
|
|
|
|
/* Charts Panel */
|
|
.charts-panel {
|
|
background: white;
|
|
border-radius: 12px;
|
|
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
|
|
padding: 18px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
width: 100%;
|
|
}
|
|
|
|
/* Tournament Type Buttons */
|
|
.tournament-type-buttons {
|
|
display: flex;
|
|
gap: 10px;
|
|
margin-bottom: 15px;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.type-btn {
|
|
background: #f8f9fa;
|
|
border: 2px solid #e9ecef;
|
|
padding: 10px 16px;
|
|
border-radius: 8px;
|
|
cursor: pointer;
|
|
transition: all 0.3s ease;
|
|
font-size: 0.9rem;
|
|
font-weight: 600;
|
|
color: #333;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
}
|
|
|
|
.type-btn:hover {
|
|
border-color: #007bff;
|
|
transform: translateY(-1px);
|
|
}
|
|
|
|
.type-btn.active {
|
|
color: white;
|
|
transform: translateY(-1px);
|
|
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
|
|
}
|
|
|
|
.type-btn.active.targets-40 {
|
|
background: #dc3545;
|
|
border-color: #dc3545;
|
|
}
|
|
|
|
.type-btn.active.targets-20 {
|
|
background: #28a745;
|
|
border-color: #28a745;
|
|
}
|
|
|
|
.type-btn.active.targets-4 {
|
|
background: #007bff;
|
|
border-color: #007bff;
|
|
}
|
|
|
|
/* Chart Info Header */
|
|
.chart-info {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
margin-bottom: 15px;
|
|
padding: 12px;
|
|
background: #f8f9fa;
|
|
border-radius: 8px;
|
|
border: 1px solid #e9ecef;
|
|
}
|
|
|
|
.chart-stats {
|
|
display: flex;
|
|
gap: 20px;
|
|
font-size: 0.85rem;
|
|
}
|
|
|
|
.chart-stat {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
text-align: center;
|
|
}
|
|
|
|
.chart-stat-value {
|
|
font-size: 1.1rem;
|
|
font-weight: bold;
|
|
color: #333;
|
|
}
|
|
|
|
.chart-stat-label {
|
|
color: #666;
|
|
font-size: 0.75rem;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
/* Shot Accuracy Stats */
|
|
.accuracy-stats {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 8px;
|
|
font-size: 0.8rem;
|
|
justify-content: center;
|
|
}
|
|
|
|
.accuracy-stat {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
padding: 4px 8px;
|
|
background: white;
|
|
border-radius: 6px;
|
|
border: 1px solid #e9ecef;
|
|
min-width: 35px;
|
|
transition: transform 0.2s ease;
|
|
}
|
|
|
|
.accuracy-stat:hover {
|
|
transform: scale(1.05);
|
|
box-shadow: 0 2px 6px rgba(0,0,0,0.1);
|
|
}
|
|
|
|
.accuracy-value {
|
|
font-weight: bold;
|
|
color: #333;
|
|
font-size: 0.9rem;
|
|
}
|
|
|
|
.accuracy-label {
|
|
color: #666;
|
|
font-size: 0.65rem;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.accuracy-chart-container {
|
|
background: white;
|
|
border-radius: 12px;
|
|
border: 1px solid #e9ecef;
|
|
padding: 20px;
|
|
margin-bottom: 20px;
|
|
box-shadow: 0 2px 4px rgba(0,0,0,0.05);
|
|
}
|
|
|
|
.accuracy-chart-container h4 {
|
|
margin: 0 0 15px 0;
|
|
color: #333;
|
|
font-size: 0.95rem;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.accuracy-bar-chart {
|
|
display: flex;
|
|
align-items: flex-end;
|
|
justify-content: space-around;
|
|
height: 200px;
|
|
gap: 6px;
|
|
padding: 10px 0;
|
|
border-bottom: 2px solid #e9ecef;
|
|
}
|
|
|
|
.accuracy-bar {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
gap: 8px;
|
|
flex: 1;
|
|
max-width: 35px;
|
|
}
|
|
|
|
.accuracy-bar-value {
|
|
width: 100%;
|
|
border-radius: 4px 4px 0 0;
|
|
transition: all 0.3s ease;
|
|
cursor: pointer;
|
|
min-height: 5px;
|
|
}
|
|
|
|
.accuracy-bar-value:hover {
|
|
opacity: 0.8;
|
|
box-shadow: 0 -2px 8px rgba(0,0,0,0.15);
|
|
}
|
|
|
|
.accuracy-bar-label {
|
|
font-size: 0.8rem;
|
|
font-weight: 600;
|
|
color: #333;
|
|
text-align: center;
|
|
}
|
|
|
|
.accuracy-bar-count {
|
|
font-size: 0.7rem;
|
|
color: #666;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.chart-container {
|
|
position: relative;
|
|
flex: 1;
|
|
min-height: 400px;
|
|
max-height: 500px;
|
|
background: white;
|
|
border-radius: 6px;
|
|
border: 1px solid #e9ecef;
|
|
padding: 15px;
|
|
width: 100%;
|
|
box-sizing: border-box;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.chart-container canvas {
|
|
max-width: calc(100% - 10px) !important;
|
|
max-height: calc(100% - 10px) !important;
|
|
width: 100% !important;
|
|
height: auto !important;
|
|
}
|
|
|
|
.no-data {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
height: 200px;
|
|
color: #999;
|
|
font-size: 0.9rem;
|
|
font-style: italic;
|
|
background: #f8f9fa;
|
|
border-radius: 6px;
|
|
border: 1px dashed #dee2e6;
|
|
}
|
|
|
|
/* Bottom Section - History */
|
|
.bottom-section {
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
gap: 15px;
|
|
min-height: 350px;
|
|
max-height: 450px;
|
|
flex-shrink: 0;
|
|
margin-top: 30px;
|
|
}
|
|
|
|
.history-section {
|
|
background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
|
|
border-radius: 16px;
|
|
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
|
|
padding: 24px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
min-height: 300px;
|
|
max-height: 100%;
|
|
border: 1px solid rgba(255, 255, 255, 0.8);
|
|
backdrop-filter: blur(10px);
|
|
}
|
|
|
|
.history-list {
|
|
flex: 1;
|
|
overflow-y: auto;
|
|
padding-right: 8px;
|
|
min-height: 200px;
|
|
max-height: 320px;
|
|
}
|
|
|
|
/* Custom scrollbar */
|
|
.history-list::-webkit-scrollbar {
|
|
width: 6px;
|
|
}
|
|
|
|
.history-list::-webkit-scrollbar-track {
|
|
background: #f8f9fa;
|
|
border-radius: 3px;
|
|
}
|
|
|
|
.history-list::-webkit-scrollbar-thumb {
|
|
background: #dee2e6;
|
|
border-radius: 3px;
|
|
}
|
|
|
|
.history-list::-webkit-scrollbar-thumb:hover {
|
|
background: #adb5bd;
|
|
}
|
|
|
|
/* Tournament History Items */
|
|
.history-item {
|
|
background: linear-gradient(135deg, #f8f9fa 0%, #e8f4fd 100%);
|
|
border-radius: 12px;
|
|
padding: 16px;
|
|
margin-bottom: 12px;
|
|
transition: all 0.3s ease;
|
|
border-left: 4px solid #2196f3;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
border: 1px solid rgba(33, 150, 243, 0.1);
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.history-item::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
width: 3px;
|
|
height: 100%;
|
|
background: linear-gradient(135deg, #2196f3 0%, #64b5f6 100%);
|
|
opacity: 0;
|
|
transition: opacity 0.3s ease;
|
|
}
|
|
|
|
.history-item:hover::before {
|
|
opacity: 1;
|
|
}
|
|
|
|
.history-item:hover {
|
|
transform: translateY(-2px);
|
|
box-shadow: 0 8px 25px rgba(33, 150, 243, 0.15);
|
|
background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
|
|
border-color: rgba(33, 150, 243, 0.2);
|
|
}
|
|
|
|
/* Clickable History Item Links */
|
|
.history-item-link {
|
|
display: block;
|
|
cursor: pointer;
|
|
transition: all 0.3s ease;
|
|
color: inherit;
|
|
}
|
|
|
|
.history-item-link .history-item {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.history-item-link:hover .history-item {
|
|
transform: translateY(-4px);
|
|
box-shadow: 0 12px 35px rgba(33, 150, 243, 0.35);
|
|
background: linear-gradient(135deg, #c5dff8 0%, #a5d6fd 100%);
|
|
border-color: rgba(33, 150, 243, 0.4);
|
|
}
|
|
|
|
/* Clickable League History Item Links */
|
|
.league-history-item-link {
|
|
display: block;
|
|
cursor: pointer;
|
|
transition: all 0.3s ease;
|
|
color: inherit;
|
|
}
|
|
|
|
.league-history-item-link .league-history-item {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.league-history-item-link:hover .league-history-item {
|
|
transform: translateY(-4px);
|
|
box-shadow: 0 12px 35px rgba(156, 39, 176, 0.35);
|
|
background: linear-gradient(135deg, #d1a4e0 0%, #c878d8 100%);
|
|
border-color: rgba(156, 39, 176, 0.3);
|
|
}
|
|
|
|
.history-info {
|
|
flex: 1;
|
|
}
|
|
|
|
.history-date {
|
|
font-size: 0.8rem;
|
|
color: #1976d2;
|
|
margin-bottom: 2px;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.history-type {
|
|
font-size: 0.75rem;
|
|
font-weight: bold;
|
|
color: #0d47a1;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
.history-score {
|
|
font-size: 1.2rem;
|
|
font-weight: bold;
|
|
color: #2e7d32;
|
|
text-shadow: 0 1px 2px rgba(0,0,0,0.1);
|
|
}
|
|
|
|
/* League History Items */
|
|
.league-history-item {
|
|
background: linear-gradient(135deg, #f3e5f5 0%, #f0e6ff 100%);
|
|
border-radius: 12px;
|
|
padding: 16px;
|
|
margin-bottom: 12px;
|
|
transition: all 0.3s ease;
|
|
border-left: 4px solid #9c27b0;
|
|
border: 1px solid rgba(156, 39, 176, 0.1);
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.league-history-item::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
width: 3px;
|
|
height: 100%;
|
|
background: linear-gradient(135deg, #9c27b0 0%, #ba68c8 100%);
|
|
opacity: 0;
|
|
transition: opacity 0.3s ease;
|
|
}
|
|
|
|
.league-history-item:hover::before {
|
|
opacity: 1;
|
|
}
|
|
|
|
.league-history-item:hover {
|
|
transform: translateY(-2px);
|
|
box-shadow: 0 8px 25px rgba(156, 39, 176, 0.15);
|
|
background: linear-gradient(135deg, #e1bee7 0%, #ce93d8 100%);
|
|
border-color: rgba(156, 39, 176, 0.2);
|
|
}
|
|
|
|
.league-header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: flex-start;
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
.league-info {
|
|
flex: 1;
|
|
}
|
|
|
|
.league-score-display {
|
|
font-size: 1.3rem;
|
|
font-weight: bold;
|
|
color: #4a148c;
|
|
text-shadow: 0 1px 2px rgba(0,0,0,0.1);
|
|
}
|
|
|
|
.league-details {
|
|
background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
|
|
border: 1px solid #81c784;
|
|
border-radius: 6px;
|
|
padding: 8px;
|
|
font-size: 0.7rem;
|
|
}
|
|
|
|
.league-summary {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
margin-bottom: 6px;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.league-final-score {
|
|
color: #1b5e20;
|
|
font-size: 0.85rem;
|
|
}
|
|
|
|
.league-total-score {
|
|
color: #388e3c;
|
|
font-size: 0.75rem;
|
|
}
|
|
|
|
.tournament-results {
|
|
display: grid;
|
|
grid-template-columns: repeat(3, 1fr);
|
|
gap: 4px;
|
|
}
|
|
|
|
.tournament-result {
|
|
padding: 4px 6px;
|
|
border-radius: 4px;
|
|
font-size: 0.65rem;
|
|
font-weight: bold;
|
|
text-align: center;
|
|
transition: transform 0.2s ease;
|
|
}
|
|
|
|
.tournament-result:hover {
|
|
transform: scale(1.05);
|
|
}
|
|
|
|
.tournament-result.participated {
|
|
background: linear-gradient(135deg, #c8e6c9, #a5d6a7);
|
|
color: #1b5e20;
|
|
border: 1px solid #81c784;
|
|
}
|
|
|
|
.tournament-result.joker {
|
|
background: linear-gradient(135deg, #fff3e0, #ffcc02);
|
|
color: #e65100;
|
|
border: 1px solid #ffb74d;
|
|
}
|
|
|
|
/* Empty State */
|
|
.empty-state {
|
|
text-align: center;
|
|
padding: 20px;
|
|
color: #666;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 100%;
|
|
}
|
|
|
|
.empty-icon {
|
|
font-size: 2rem;
|
|
margin-bottom: 8px;
|
|
opacity: 0.5;
|
|
}
|
|
|
|
/* Responsive Design */
|
|
@media (max-width: 1200px) {
|
|
.top-section {
|
|
grid-template-columns: 1fr;
|
|
min-height: 320px;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.navbar {
|
|
padding: 10px 15px;
|
|
flex-direction: column;
|
|
gap: 8px;
|
|
height: auto;
|
|
}
|
|
|
|
.navbar-controls {
|
|
flex-wrap: wrap;
|
|
justify-content: center;
|
|
}
|
|
|
|
.container {
|
|
min-height: calc(100vh - 100px);
|
|
padding: 10px;
|
|
}
|
|
|
|
.top-section, .bottom-section {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.stats-grid {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.top-section {
|
|
min-height: 250px;
|
|
}
|
|
|
|
.bottom-section {
|
|
min-height: 500px;
|
|
max-height: none;
|
|
}
|
|
|
|
.history-section {
|
|
min-height: 220px;
|
|
}
|
|
|
|
.history-list {
|
|
min-height: 150px;
|
|
max-height: 200px;
|
|
}
|
|
|
|
.chart-container {
|
|
max-height: 350px;
|
|
min-height: 300px;
|
|
padding: 10px;
|
|
}
|
|
}
|
|
</style>
|
|
<script src="/static/js/i18n.js"></script>
|
|
</head>
|
|
<body>
|
|
<!-- Navigation Bar -->
|
|
<div class="navbar">
|
|
<div class="navbar-title">📊 {{ player.name }} - <span data-i18n="players.player_stats">Stats</span></div>
|
|
<div class="navbar-controls">
|
|
<a href="/" class="nav-btn">📺 <span data-i18n="navigation.dashboard">Dashboard</span></a>
|
|
<a href="/archive/player-analysis" class="nav-btn active">👤 <span data-i18n="players.player_analysis">Player Analysis</span></a>
|
|
<a href="/archive" class="nav-btn">📚 <span data-i18n="navigation.archive">Archive</span></a>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="container">
|
|
<!-- Stats Overview -->
|
|
<div class="stats-badges">
|
|
<div class="stat-badge">
|
|
<span class="stat-icon">🏆</span>
|
|
<div class="stat-number">{{ stats.total_tournaments }}</div>
|
|
<div class="stat-label" data-i18n="tournament.tournaments">Tournaments</div>
|
|
</div>
|
|
<div class="stat-badge">
|
|
<span class="stat-icon">🎖️</span>
|
|
<div class="stat-number">{{ stats.total_leagues }}</div>
|
|
<div class="stat-label" data-i18n="league.league">Leagues</div>
|
|
</div>
|
|
<div class="stat-badge">
|
|
<span class="stat-icon">⭐</span>
|
|
<div class="stat-number">{{ stats.best_tournament_score }}</div>
|
|
<div class="stat-label" data-i18n="results.best_score">Best Score</div>
|
|
</div>
|
|
<div class="stat-badge">
|
|
<span class="stat-icon">📊</span>
|
|
<div class="stat-number">{{ stats.average_tournament_score|round|int if stats.average_tournament_score > 0 else 0 }}</div>
|
|
<div class="stat-label" data-i18n="results.average_score">Average</div>
|
|
</div>
|
|
<div class="stat-badge">
|
|
<span class="stat-icon">🔫</span>
|
|
<div class="stat-number">{{ stats.total_shots_fired|default(0) }}</div>
|
|
<div class="stat-label" data-i18n="results.total_shots">Total Shots</div>
|
|
</div>
|
|
<div class="stat-badge">
|
|
<span class="stat-icon">📉</span>
|
|
<div class="stat-number">{{ stats.worst_tournament_score if stats.worst_tournament_score > 0 else 0 }}</div>
|
|
<div class="stat-label" data-i18n="results.worst_score">Worst Score</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Charts Section -->
|
|
<div class="charts-section">
|
|
<div class="charts-panel">
|
|
<div class="panel-title">📈 <span data-i18n="analysis.performance">Performance by Tournament Type</span></div>
|
|
|
|
<!-- Tournament Type Buttons -->
|
|
<div class="tournament-type-buttons">
|
|
<button class="type-btn active targets-40" data-type="40 Targets">
|
|
<span>💪</span> <span data-i18n="tournament_types.40_targets">40 Targets</span>
|
|
</button>
|
|
<button class="type-btn targets-20" data-type="20 Targets">
|
|
<span>⚡</span> <span data-i18n="tournament_types.20_targets">20 Targets</span>
|
|
</button>
|
|
<button class="type-btn targets-4" data-type="4 Targets">
|
|
<span>🎯</span> <span data-i18n="tournament_types.4_targets">4 Targets</span>
|
|
</button>
|
|
</div>
|
|
|
|
<!-- Chart Info and Stats -->
|
|
<div class="chart-info" id="chartInfo">
|
|
<div class="chart-stats">
|
|
<div class="chart-stat">
|
|
<div class="chart-stat-value" id="gameCount">0</div>
|
|
<div class="chart-stat-label" data-i18n="tournament.tournaments">Games</div>
|
|
</div>
|
|
<div class="chart-stat">
|
|
<div class="chart-stat-value" id="avgScore">0</div>
|
|
<div class="chart-stat-label" data-i18n="results.average_score">Average</div>
|
|
</div>
|
|
<div class="chart-stat">
|
|
<div class="chart-stat-value" id="bestScore">0</div>
|
|
<div class="chart-stat-label" data-i18n="results.best_score">Best</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Shot Accuracy Bar Chart -->
|
|
<div class="accuracy-chart-container">
|
|
<h4 data-i18n="analysis.shot_accuracy">Shot Accuracy Distribution</h4>
|
|
<div class="accuracy-bar-chart" id="accuracyBarChart"></div>
|
|
</div>
|
|
|
|
<!-- Shot Accuracy Stats -->
|
|
<div class="accuracy-stats" id="accuracyStats">
|
|
<div class="accuracy-stat">
|
|
<div class="accuracy-value" id="tens">0</div>
|
|
<div class="accuracy-label">10s</div>
|
|
</div>
|
|
<div class="accuracy-stat">
|
|
<div class="accuracy-value" id="nines">0</div>
|
|
<div class="accuracy-label">9s</div>
|
|
</div>
|
|
<div class="accuracy-stat">
|
|
<div class="accuracy-value" id="eights">0</div>
|
|
<div class="accuracy-label">8s</div>
|
|
</div>
|
|
<div class="accuracy-stat">
|
|
<div class="accuracy-value" id="sevens">0</div>
|
|
<div class="accuracy-label">7s</div>
|
|
</div>
|
|
<div class="accuracy-stat">
|
|
<div class="accuracy-value" id="sixes">0</div>
|
|
<div class="accuracy-label">6s</div>
|
|
</div>
|
|
<div class="accuracy-stat">
|
|
<div class="accuracy-value" id="fives">0</div>
|
|
<div class="accuracy-label">5s</div>
|
|
</div>
|
|
<div class="accuracy-stat">
|
|
<div class="accuracy-value" id="fours">0</div>
|
|
<div class="accuracy-label">4s</div>
|
|
</div>
|
|
<div class="accuracy-stat">
|
|
<div class="accuracy-value" id="threes">0</div>
|
|
<div class="accuracy-label">3s</div>
|
|
</div>
|
|
<div class="accuracy-stat">
|
|
<div class="accuracy-value" id="twos">0</div>
|
|
<div class="accuracy-label">2s</div>
|
|
</div>
|
|
<div class="accuracy-stat">
|
|
<div class="accuracy-value" id="ones">0</div>
|
|
<div class="accuracy-label">1s</div>
|
|
</div>
|
|
<div class="accuracy-stat">
|
|
<div class="accuracy-value" id="zeros">0</div>
|
|
<div class="accuracy-label">0s</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Single Chart Container -->
|
|
<div class="chart-container">
|
|
<canvas id="tournamentChart"></canvas>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Bottom Section - History -->
|
|
<div class="bottom-section">
|
|
<!-- Tournament History -->
|
|
<div class="history-section">
|
|
<div class="panel-title">🎯 <span data-i18n="analysis.tournament_history">Tournament History</span></div>
|
|
{% if stats.tournament_history %}
|
|
<div class="history-list">
|
|
{% for tournament in stats.tournament_history %}
|
|
<a href="/archive/tournament/{{ tournament.filename }}" class="history-item-link" style="text-decoration: none;">
|
|
<div class="history-item">
|
|
<div class="history-info">
|
|
<div class="history-date">{{ tournament.date[:10] if tournament.date != 'Unknown' else (translations.analysis.unknown_date if translations else 'Unknown Date') }}</div>
|
|
<div class="history-type">{{ tournament.tournament_type.replace('_', ' ')|title }} • {{ tournament.shots_fired }} {{ translations.results.shots if translations else 'shots' }}</div>
|
|
</div>
|
|
<div class="history-score">{{ tournament.score }}</div>
|
|
</div>
|
|
</a>
|
|
{% endfor %}
|
|
</div>
|
|
{% else %}
|
|
<div class="empty-state">
|
|
<div class="empty-icon">🎯</div>
|
|
<div>No tournament history</div>
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
|
|
<!-- League History -->
|
|
<div class="history-section">
|
|
<div class="panel-title">🏆 League History</div>
|
|
{% if stats.league_history %}
|
|
<div class="history-list">
|
|
{% for league in stats.league_history %}
|
|
<a href="/archive/league/{{ league.filename }}" class="league-history-item-link" style="text-decoration: none;">
|
|
<div class="league-history-item">
|
|
<div class="league-header">
|
|
<div class="league-info">
|
|
<div class="history-date">{{ league.date[:10] if league.date != 'Unknown' else 'Unknown Date' }}</div>
|
|
<div class="history-type">
|
|
League Championship • {{ league.tournaments_participated }}/6 tournaments
|
|
{% if league.joker_used %} • 🃏 {{ translations.league.joker_used if translations else 'Joker Used' }}{% endif %}
|
|
</div>
|
|
</div>
|
|
<div class="league-score-display">{{ league.final_score }}</div>
|
|
</div>
|
|
|
|
<div class="league-details">
|
|
<div class="league-summary">
|
|
<span>Final Score: <span class="league-final-score">{{ league.final_score }}</span></span>
|
|
<span class="league-total-score">Total: {{ league.total_score }}</span>
|
|
</div>
|
|
<div class="tournament-results">
|
|
{% for result in league.tournament_results %}
|
|
<span class="tournament-result {{ 'participated' if result.participated else 'joker' }}">
|
|
T{{ result.tournament }}: {{ result.score if result.participated else (translations.league.joker_used if translations else 'Joker') }}
|
|
</span>
|
|
{% endfor %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</a>
|
|
{% endfor %}
|
|
</div>
|
|
{% else %}
|
|
<div class="empty-state">
|
|
<div class="empty-icon">🏆</div>
|
|
<div>No league history</div>
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<script>
|
|
// Player data from Flask
|
|
const playerStats = {{ stats|tojson }};
|
|
|
|
// Tournament type configuration
|
|
const tournamentTypes = {
|
|
'40 Targets': { color: '#dc3545', icon: '💪', class: 'targets-40' },
|
|
'20 Targets': { color: '#28a745', icon: '⚡', class: 'targets-20' },
|
|
'4 Targets': { color: '#007bff', icon: '🎯', class: 'targets-4' }
|
|
};
|
|
|
|
let currentChart = null;
|
|
let accuracyChartInstance = null;
|
|
let currentTournamentType = '40 Targets'; // Will be updated based on available data
|
|
let tournamentsByType = {};
|
|
let shotAccuracyData = {};
|
|
|
|
// Initialize page
|
|
function initializePage() {
|
|
groupTournamentsByType();
|
|
setupEventListeners();
|
|
loadShotAccuracyData();
|
|
updateChart();
|
|
}
|
|
|
|
// Load shot accuracy data from template context
|
|
function loadShotAccuracyData() {
|
|
try {
|
|
// Get shot accuracy data directly from template context
|
|
const statsData = {{ stats|tojson }};
|
|
console.log('Stats data from template:', statsData);
|
|
|
|
if (statsData && statsData.shot_accuracy) {
|
|
shotAccuracyData = statsData.shot_accuracy;
|
|
console.log('Shot accuracy data loaded from template:', shotAccuracyData);
|
|
|
|
// Map backend keys to display names
|
|
const typeMapping = {
|
|
'40_targets': '40 Targets',
|
|
'20_targets': '20 Targets',
|
|
'4_targets': '4 Targets'
|
|
};
|
|
|
|
// Auto-select the first tournament type with data
|
|
const availableTypes = Object.keys(shotAccuracyData);
|
|
if (availableTypes.length > 0) {
|
|
// Find the first type with actual data
|
|
for (const backendType of availableTypes) {
|
|
const typeData = shotAccuracyData[backendType];
|
|
const hasData = Object.values(typeData).some(v => v > 0);
|
|
if (hasData) {
|
|
// Convert backend key to display name
|
|
currentTournamentType = typeMapping[backendType] || backendType;
|
|
console.log('Selected tournament type:', currentTournamentType, 'from backend key:', backendType);
|
|
break;
|
|
}
|
|
}
|
|
|
|
// Update button states
|
|
updateActiveButton();
|
|
}
|
|
|
|
updateChart(); // Refresh chart with accuracy data
|
|
} else {
|
|
console.log('No shot accuracy data available in template');
|
|
updateChart();
|
|
}
|
|
} catch (error) {
|
|
console.error('Error loading shot accuracy data:', error);
|
|
updateChart();
|
|
}
|
|
}
|
|
|
|
// Update active button based on current tournament type
|
|
function updateActiveButton() {
|
|
const typeButtons = document.querySelectorAll('.type-btn');
|
|
typeButtons.forEach(btn => {
|
|
btn.classList.remove('active');
|
|
if (btn.dataset.type === currentTournamentType) {
|
|
btn.classList.add('active');
|
|
}
|
|
});
|
|
}
|
|
|
|
// Setup event listeners
|
|
function setupEventListeners() {
|
|
const typeButtons = document.querySelectorAll('.type-btn');
|
|
typeButtons.forEach(btn => {
|
|
btn.addEventListener('click', () => {
|
|
// Update active button
|
|
typeButtons.forEach(b => b.classList.remove('active'));
|
|
btn.classList.add('active');
|
|
|
|
// Update current type and chart
|
|
currentTournamentType = btn.dataset.type;
|
|
updateChart();
|
|
});
|
|
});
|
|
}
|
|
|
|
// Group tournaments by type based on tournament_type field or shots fired
|
|
function groupTournamentsByType() {
|
|
const tournamentHistory = playerStats.tournament_history || [];
|
|
tournamentsByType = {};
|
|
|
|
tournamentHistory.forEach(tournament => {
|
|
let type;
|
|
|
|
// First try to use the tournament_type field if it exists
|
|
if (tournament.tournament_type) {
|
|
const typeField = tournament.tournament_type.toLowerCase();
|
|
if (typeField.includes('40') || typeField.includes('forty')) {
|
|
type = '40 Targets';
|
|
} else if (typeField.includes('20') || typeField.includes('twenty')) {
|
|
type = '20 Targets';
|
|
} else if (typeField.includes('4') || typeField.includes('four')) {
|
|
type = '4 Targets';
|
|
}
|
|
}
|
|
|
|
// If we couldn't determine from tournament_type, fall back to shots_fired
|
|
if (!type) {
|
|
const shots = tournament.shots_fired;
|
|
if (shots >= 30) {
|
|
type = '40 Targets';
|
|
} else if (shots >= 10 && shots <= 29) {
|
|
type = '20 Targets';
|
|
} else if (shots <= 9) {
|
|
type = '4 Targets';
|
|
}
|
|
}
|
|
|
|
// Skip tournaments that don't match our types
|
|
if (!type) {
|
|
console.log('Could not categorize tournament:', tournament);
|
|
return;
|
|
}
|
|
|
|
if (!tournamentsByType[type]) {
|
|
tournamentsByType[type] = [];
|
|
}
|
|
tournamentsByType[type].push(tournament);
|
|
});
|
|
|
|
// Sort each type by date
|
|
Object.keys(tournamentsByType).forEach(type => {
|
|
tournamentsByType[type].sort((a, b) => new Date(a.date) - new Date(b.date));
|
|
});
|
|
|
|
console.log('Tournaments grouped by type:', tournamentsByType);
|
|
console.log('Available tournament types from database:', Object.keys(tournamentsByType));
|
|
|
|
// If no 40 Targets tournaments, try to default to an available type
|
|
if (!tournamentsByType['40 Targets'] && Object.keys(tournamentsByType).length > 0) {
|
|
const availableTypes = Object.keys(tournamentsByType);
|
|
currentTournamentType = availableTypes[0];
|
|
console.log(`No 40 Targets tournaments found. Defaulting to: ${currentTournamentType}`);
|
|
updateActiveButton();
|
|
}
|
|
}
|
|
|
|
// Update chart and statistics for current tournament type
|
|
function updateChart() {
|
|
const tournaments = tournamentsByType[currentTournamentType] || [];
|
|
updateChartInfo(tournaments);
|
|
createChart(tournaments);
|
|
}
|
|
|
|
// Update chart information and statistics
|
|
function updateChartInfo(tournaments) {
|
|
const gameCount = tournaments.length;
|
|
const scores = tournaments.map(t => t.score);
|
|
const avgScore = gameCount > 0 ? Math.round(scores.reduce((a, b) => a + b, 0) / gameCount) : 0;
|
|
const bestScore = gameCount > 0 ? Math.max(...scores) : 0;
|
|
|
|
// Update basic stats
|
|
document.getElementById('gameCount').textContent = gameCount;
|
|
document.getElementById('avgScore').textContent = avgScore;
|
|
document.getElementById('bestScore').textContent = bestScore;
|
|
|
|
// Update shot accuracy stats (if available in tournament data)
|
|
updateAccuracyStats(tournaments);
|
|
}
|
|
|
|
// Update shot accuracy statistics
|
|
function updateAccuracyStats(tournaments) {
|
|
let tens = 0, nines = 0, eights = 0, sevens = 0, sixes = 0;
|
|
let fives = 0, fours = 0, threes = 0, twos = 0, ones = 0, zeros = 0;
|
|
let hasData = false;
|
|
|
|
tournaments.forEach(tournament => {
|
|
// Check if we have shot breakdown data for this tournament
|
|
if (tournament.shot_breakdown) {
|
|
hasData = true;
|
|
const breakdown = tournament.shot_breakdown;
|
|
tens += breakdown.tens || 0;
|
|
nines += breakdown.nines || 0;
|
|
eights += breakdown.eights || 0;
|
|
sevens += breakdown.sevens || 0;
|
|
sixes += breakdown.sixes || 0;
|
|
fives += breakdown.fives || 0;
|
|
fours += breakdown.fours || 0;
|
|
threes += breakdown.threes || 0;
|
|
twos += breakdown.twos || 0;
|
|
ones += breakdown.ones || 0;
|
|
zeros += breakdown.zeros || 0;
|
|
}
|
|
});
|
|
|
|
// Also check if we have aggregated shot accuracy data for this tournament type
|
|
console.log('Current tournament type:', currentTournamentType);
|
|
console.log('Available keys in shotAccuracyData:', Object.keys(shotAccuracyData));
|
|
|
|
// Map display names to backend keys
|
|
const typeMapping = {
|
|
'40 Targets': '40_targets',
|
|
'20 Targets': '20_targets',
|
|
'4 Targets': '4_targets'
|
|
};
|
|
|
|
const backendKey = typeMapping[currentTournamentType] || currentTournamentType;
|
|
console.log('Looking for data with key:', backendKey);
|
|
|
|
if (shotAccuracyData && shotAccuracyData[backendKey]) {
|
|
hasData = true;
|
|
const typeData = shotAccuracyData[backendKey];
|
|
console.log('Found shot accuracy data for type:', typeData);
|
|
tens = typeData.tens || 0;
|
|
nines = typeData.nines || 0;
|
|
eights = typeData.eights || 0;
|
|
sevens = typeData.sevens || 0;
|
|
sixes = typeData.sixes || 0;
|
|
fives = typeData.fives || 0;
|
|
fours = typeData.fours || 0;
|
|
threes = typeData.threes || 0;
|
|
twos = typeData.twos || 0;
|
|
ones = typeData.ones || 0;
|
|
zeros = typeData.zeros || 0;
|
|
} else {
|
|
console.log('No shot accuracy data found for type:', currentTournamentType, 'mapped to:', backendKey);
|
|
console.log('Full shotAccuracyData object:', shotAccuracyData);
|
|
}
|
|
|
|
const accuracyStatsDiv = document.getElementById('accuracyStats');
|
|
|
|
if (!hasData) {
|
|
// Hide the accuracy stats section if no data is available
|
|
accuracyStatsDiv.style.display = 'none';
|
|
console.log(`No shot accuracy data available for ${currentTournamentType}`);
|
|
return;
|
|
}
|
|
|
|
// Show the section if data is available
|
|
accuracyStatsDiv.style.display = 'flex';
|
|
|
|
document.getElementById('tens').textContent = tens;
|
|
document.getElementById('nines').textContent = nines;
|
|
document.getElementById('eights').textContent = eights;
|
|
document.getElementById('sevens').textContent = sevens;
|
|
document.getElementById('sixes').textContent = sixes;
|
|
document.getElementById('fives').textContent = fives;
|
|
document.getElementById('fours').textContent = fours;
|
|
document.getElementById('threes').textContent = threes;
|
|
document.getElementById('twos').textContent = twos;
|
|
document.getElementById('ones').textContent = ones;
|
|
document.getElementById('zeros').textContent = zeros;
|
|
|
|
// Render accuracy bar chart
|
|
createAccuracyChart(tens, nines, eights, sevens, sixes, fives, fours, threes, twos, ones, zeros);
|
|
|
|
console.log(`Shot accuracy for ${currentTournamentType}:`, {
|
|
tens, nines, eights, sevens, sixes, fives, fours, threes, twos, ones, zeros
|
|
});
|
|
}
|
|
|
|
// Create bar chart for shot accuracy distribution using CSS
|
|
function createAccuracyChart(tens, nines, eights, sevens, sixes, fives, fours, threes, twos, ones, zeros) {
|
|
const chartContainer = document.getElementById('accuracyBarChart');
|
|
if (!chartContainer) {
|
|
console.warn('Accuracy bar chart container not found');
|
|
return;
|
|
}
|
|
|
|
const data = [
|
|
{ label: '10', count: tens, color: '#4CAF50' },
|
|
{ label: '9', count: nines, color: '#8BC34A' },
|
|
{ label: '8', count: eights, color: '#CDDC39' },
|
|
{ label: '7', count: sevens, color: '#FFC107' },
|
|
{ label: '6', count: sixes, color: '#FF9800' },
|
|
{ label: '5', count: fives, color: '#FF7043' },
|
|
{ label: '4', count: fours, color: '#F44336' },
|
|
{ label: '3', count: threes, color: '#E91E63' },
|
|
{ label: '2', count: twos, color: '#9C27B0' },
|
|
{ label: '1', count: ones, color: '#673AB7' },
|
|
{ label: '0', count: zeros, color: '#9E9E9E' }
|
|
];
|
|
|
|
// Find max count for scaling
|
|
const maxCount = Math.max(...data.map(d => d.count), 1);
|
|
|
|
// Clear previous content
|
|
chartContainer.innerHTML = '';
|
|
|
|
// Create bars
|
|
data.forEach(item => {
|
|
const barHeight = (item.count / maxCount) * 100;
|
|
const bar = document.createElement('div');
|
|
bar.className = 'accuracy-bar';
|
|
bar.innerHTML = `
|
|
<div class="accuracy-bar-value" style="height: ${barHeight}%; background-color: ${item.color};" title="${item.label}: ${item.count}"></div>
|
|
<div class="accuracy-bar-label">${item.label}</div>
|
|
<div class="accuracy-bar-count">${item.count}</div>
|
|
`;
|
|
chartContainer.appendChild(bar);
|
|
});
|
|
|
|
console.log('CSS Bar chart created successfully with data:', {tens, nines, eights, sevens, sixes, fives, fours, threes, twos, ones, zeros});
|
|
}
|
|
|
|
// Create chart for current tournament type
|
|
function createChart(tournaments) {
|
|
const canvas = document.getElementById('tournamentChart');
|
|
const ctx = canvas.getContext('2d');
|
|
|
|
// Destroy existing chart if it exists
|
|
if (currentChart) {
|
|
currentChart.destroy();
|
|
}
|
|
|
|
if (tournaments.length === 0) {
|
|
// Show no data message
|
|
ctx.font = '16px Arial';
|
|
ctx.fillStyle = '#666';
|
|
ctx.textAlign = 'center';
|
|
ctx.fillText(`No ${currentTournamentType} tournaments found`, canvas.width / 2, canvas.height / 2);
|
|
return;
|
|
}
|
|
|
|
const typeConfig = tournamentTypes[currentTournamentType];
|
|
const scores = tournaments.map(t => t.score);
|
|
|
|
currentChart = new Chart(ctx, {
|
|
type: 'line',
|
|
data: {
|
|
labels: scores.map((_, i) => `${i + 1}`),
|
|
datasets: [{
|
|
label: `${currentTournamentType} Score`,
|
|
data: scores,
|
|
borderColor: typeConfig.color,
|
|
backgroundColor: typeConfig.color + '20',
|
|
borderWidth: 3,
|
|
fill: true,
|
|
tension: 0.4,
|
|
pointRadius: 5,
|
|
pointHoverRadius: 8,
|
|
pointBackgroundColor: typeConfig.color,
|
|
pointBorderColor: '#fff',
|
|
pointBorderWidth: 2,
|
|
pointHoverBackgroundColor: typeConfig.color,
|
|
pointHoverBorderColor: '#fff'
|
|
}]
|
|
},
|
|
options: {
|
|
responsive: true,
|
|
maintainAspectRatio: false,
|
|
plugins: {
|
|
legend: { display: false },
|
|
tooltip: {
|
|
backgroundColor: typeConfig.color + 'E6',
|
|
titleColor: '#fff',
|
|
bodyColor: '#fff',
|
|
borderColor: typeConfig.color,
|
|
borderWidth: 2,
|
|
callbacks: {
|
|
title: function(context) {
|
|
const tournament = tournaments[context[0].dataIndex];
|
|
return `Game ${context[0].dataIndex + 1} - ${tournament.date.split(' ')[0]}`;
|
|
},
|
|
label: function(context) {
|
|
const tournament = tournaments[context.dataIndex];
|
|
const labels = [`Score: ${context.parsed.y}`, `Shots: ${tournament.shots_fired}`];
|
|
|
|
// Add tournament type if available
|
|
if (tournament.tournament_type) {
|
|
labels.push(`Type: ${tournament.tournament_type.replace('_', ' ')}`);
|
|
}
|
|
|
|
// Add shot breakdown if available
|
|
if (tournament.shot_breakdown) {
|
|
const breakdown = tournament.shot_breakdown;
|
|
const shots = [];
|
|
if (breakdown.tens) shots.push(`10s: ${breakdown.tens}`);
|
|
if (breakdown.nines) shots.push(`9s: ${breakdown.nines}`);
|
|
if (breakdown.eights) shots.push(`8s: ${breakdown.eights}`);
|
|
if (breakdown.sevens) shots.push(`7s: ${breakdown.sevens}`);
|
|
if (breakdown.sixes) shots.push(`6s: ${breakdown.sixes}`);
|
|
if (breakdown.fives) shots.push(`5s: ${breakdown.fives}`);
|
|
if (breakdown.fours) shots.push(`4s: ${breakdown.fours}`);
|
|
if (breakdown.threes) shots.push(`3s: ${breakdown.threes}`);
|
|
if (breakdown.twos) shots.push(`2s: ${breakdown.twos}`);
|
|
if (breakdown.ones) shots.push(`1s: ${breakdown.ones}`);
|
|
if (breakdown.zeros) shots.push(`0s: ${breakdown.zeros}`);
|
|
|
|
if (shots.length > 0) {
|
|
// Show only top scoring shots to keep tooltip readable
|
|
const topShots = shots.slice(0, 5);
|
|
labels.push(topShots.join(', '));
|
|
if (shots.length > 5) {
|
|
labels.push('+ more...');
|
|
}
|
|
}
|
|
}
|
|
|
|
return labels;
|
|
}
|
|
}
|
|
}
|
|
},
|
|
scales: {
|
|
y: {
|
|
beginAtZero: true,
|
|
grid: {
|
|
color: typeConfig.color + '20'
|
|
},
|
|
ticks: {
|
|
color: typeConfig.color,
|
|
font: { size: 12, weight: 'bold' }
|
|
}
|
|
},
|
|
x: {
|
|
grid: {
|
|
color: typeConfig.color + '20'
|
|
},
|
|
ticks: {
|
|
color: typeConfig.color,
|
|
font: { size: 12, weight: 'bold' }
|
|
}
|
|
}
|
|
},
|
|
interaction: {
|
|
intersect: false,
|
|
mode: 'index'
|
|
}
|
|
}
|
|
});
|
|
}
|
|
|
|
// Initialize page when DOM is loaded
|
|
document.addEventListener('DOMContentLoaded', initializePage);
|
|
</script>
|
|
</body>
|
|
</html> |