Changes between Initial Version and Version 1 of Ticket #11700


Ignore:
Timestamp:
Apr 27, 2014, 4:55:59 AM (10 years ago)
Author:
Ryan J Ollos
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #11700 – Description

    initial v1  
    11When data contains nulls like:
    2 Sp_data  Ideal   Real
    3 2013-06-22 00:00:00+02:00       39      39
    4 2013-06-22 00:00:00+02:00               39
    5 2013-06-23 00:00:00+02:00       36     
    6 2013-06-24 00:00:00+02:00       33      32
     2|| Sp_data       || Ideal        || Real ||
     3|| 2013-06-22 00:00:00+02:00 || 39 || 39 ||
     4|| 2013-06-22 00:00:00+02:00 || || 39 ||
     5|| 2013-06-23 00:00:00+02:00 || 36 || ||
     6|| 2013-06-24 00:00:00+02:00 || 33 || 32 ||
    77
    88error is raised:
     9{{{
    910All series on a given axis must be of the same data type
     11}}}
    1012
    1113when null value is replaced by exact value ex:
    12 Sp_data  Ideal   Real
    13 2013-06-22 00:00:00+02:00       39      39
    14 2013-06-22 00:00:00+02:00       1       39
    15 2013-06-23 00:00:00+02:00       36      1
    16 2013-06-24 00:00:00+02:00       33      32
     14|| Sp_data       || Ideal        || Real ||
     15|| 2013-06-22 00:00:00+02:00 || 39 || 39 ||
     16|| 2013-06-22 00:00:00+02:00 || 1 || 39 ||
     17|| 2013-06-23 00:00:00+02:00 || 36 || 1 ||
     18|| 2013-06-24 00:00:00+02:00 || 33 || 32 ||
     19
    1720chart is ok
    1821
    19 I added to [vis] in trac.ini
     22I added to `[vis]` in `trac.ini`:
     23{{{
    2024options = interpolateNulls:true
    21 but result is the same as without this line
     25}}}
     26
     27but result is the same as without this line.