File tree Expand file tree Collapse file tree 2 files changed +28
-1
lines changed
Expand file tree Collapse file tree 2 files changed +28
-1
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,31 @@ All notable changes to this project will be documented in this file.
55The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
66and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
77
8+ ## [ 0.5.2] - 2025-12-20
9+
10+ ### Added
11+
12+ - ** Enhanced Plot Types**
13+ - Multi-color support for Line plots, allowing different colors per segment.
14+ - New Step plot type for discrete value visualization.
15+ - ** Documentation & Examples**
16+ - Live demos integrated into documentation pages.
17+ - Additional demo examples showcasing plugin usage and features.
18+ - Plugin integration examples in demo charts.
19+
20+ ### Fixed
21+
22+ - Zoom controller improvements and tweaks for better user experience.
23+ - Chart.js integration fixes for proper module loading.
24+ - Documentation page rendering and theme consistency.
25+ - Updated internal GitHub repository links.
26+
27+ ### Changed
28+
29+ - Enhanced demo pages with more comprehensive examples.
30+ - Improved documentation structure and navigation.
31+ - Optimized chart sizing for various use cases.
32+
833## [ 0.5.0] - 2025-12-17 (first public release)
934
1035### Added
Original file line number Diff line number Diff line change @@ -71,14 +71,16 @@ <h1>Full featured Demo</h1>
7171 volume : k . volume ,
7272 } ) ) ;
7373
74+ const isMobileDevice = / i P h o n e | i P a d | i P o d | A n d r o i d / i. test ( navigator . userAgent ) ;
75+
7476 // Initialize Chart
7577 const chartContainer = document . getElementById ( 'main-chart' ) ;
7678 window . chart = new QFChart . QFChart ( chartContainer , {
7779 title : 'BTC/USDT' , // Custom title
7880 height : '800px' ,
7981 padding : 0.2 ,
8082 databox : {
81- position : 'right' ,
83+ position : isMobileDevice ? 'floating' : 'right' ,
8284 } ,
8385 dataZoom : {
8486 visible : true ,
You can’t perform that action at this time.
0 commit comments