Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | minor fix in plotchart |
---|---|
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
d34dee0c4935634e2cc91f4ba718f32d |
User & Date: | chw 2019-06-15 06:09:02.173 |
Context
2019-06-15
| ||
06:09 | improve twv demo check-in: 0ba3f6e997 user: chw tags: trunk | |
06:09 | minor fix in plotchart check-in: d34dee0c49 user: chw tags: trunk | |
2019-06-14
| ||
15:09 | improve twv demo check-in: 4eb3029eeb user: chw tags: trunk | |
Changes
Changes to assets/tklib0.6/plotchart/plotpriv.tcl.
︙ | ︙ | |||
4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 | # proc ::Plotchart::DeleteData {w} { variable data_series variable scaling foreach elem [array names data_series $w,*,x] { unset -nocomplain data_series($elem) } $w delete data } | > > > | 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 | # proc ::Plotchart::DeleteData {w} { variable data_series variable scaling foreach elem [array names data_series $w,*,x] { unset -nocomplain data_series($elem) } foreach elem [array names data_series $w,*,trend] { unset -nocomplain data_series($elem) } $w delete data } |