From ef03469fec14f1f0358b690934fc173d744f4e7d Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 7 Apr 2024 17:26:01 +0200 Subject: Adding debian version 5.6.0-1. Signed-off-by: Daniel Baumann --- .../epoch/tests/render/real-time/line.html | 596 +++++++++++++++++++++ 1 file changed, 596 insertions(+) create mode 100644 debian/missing-sources/epoch/tests/render/real-time/line.html (limited to 'debian/missing-sources/epoch/tests/render/real-time/line.html') diff --git a/debian/missing-sources/epoch/tests/render/real-time/line.html b/debian/missing-sources/epoch/tests/render/real-time/line.html new file mode 100644 index 0000000..3346c98 --- /dev/null +++ b/debian/missing-sources/epoch/tests/render/real-time/line.html @@ -0,0 +1,596 @@ + + + + + + + + + + + + +

Real-time Line Plot Test

+ +
    +
  1. Single Series
  2. +
  3. Single Series Single Transition
  4. +
  5. Single Seires Stream
  6. +
  7. Multi Series
  8. +
  9. Multi Series Single Transition
  10. +
  11. Multi Seires Stream
  12. +
  13. Color Override
  14. +
  15. Categorical Colors
  16. +
  17. Show/Hide Layers
  18. +
  19. Show/Hide Layers
  20. +
  21. Multiaxes
  22. +
+ + +
+

1. Single Series

+

+ Correctly render a single series plot of y = cos(x) + 1 over the range [0, 2π]. +

+
+
+ + + + +
+

2. Single Series Single Transition

+

+ Correctly render a single series plot of y = sin(x) + 1. When the button is pressed push a new data point to the chart and correctly animate/render the transiton. +

+
+

+
+ + + + + +
+

3. Single Seires Stream

+

Correctly play / pause a single series stream of values from the plot y = cos(x) + 1.

+
+

+
+ + + + +
+

4. Multi Series

+

Correctly render a multi series plot of the following functions:

+
    +
  • y = log(x+1)
  • +
  • y = 2*log(x+1)
  • +
  • y = 3*log(x+1)
  • +
+
+
+ + + + + +
+

5. Multi Series Single Transition

+

+ Correctly render a multi series plot of the following functions: +

    +
  • y = x
  • +
  • y = x1.25
  • +
  • y = x1.5
  • +
+ and correctly render/animate the transiton after pressing the "Next" button. +

+
+

+ +

+
+ + + + +
+

6. Multi Seires Stream

+

+ Correctly play / pause a multi series stream of values over the following plots: +

    +
  • x
  • +
  • x * log(x)
  • +
  • x * log2(x)
  • +
+

+
+

+
+ + + + +
+

7. Color Override

+

The first layer should pink, the second green, and the third blue.

+
+
+ + + + + + +
+

8. Categorical Colors

+

Correctly render and switch between different categorical colors. Unlike with the basic charts this doesn't occur just by switching the class name on the containing element. The CSS query engine must be purge and the plot must be manually redrawn, like so:

+Epoch.QueryCSS.purge();
+chart.draw();
+
+

+ +
+ +

+ + + + +

+
+ + + + +
+

9. Show/Hide Layers

+
+

+ + + | + +

+
+ + + +
+

10. Fixed Range

+

+ Render a single series plot of y = cos(x). Instead of automatically setting the range to [-1, 1], the range is manually set to [-2, 5]. +

+
+
+ + + + +
+

11. Multi-axes

+

+ Render a plot that uses independent axes ranges for the left and + right sides. +

+
+
+ + + + +
+

12. Multi-axes with Labeled Ranges

+

+ Render a plot that uses independent axes ranges for the left and + right sides that are associated to labels in the chart data. +

+
+
+ + + + -- cgit v1.2.3