897 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
0
answers
31
views
dyGraphs is possible to fill the area with differents colors based on the y value?
Graph Image
With dyGraphs is possible to fill the area of a graphic with differents color based on y value ?
0-49.9 green
50.0 149.9 yellow
150 and up red.
I made this example https://tbr2.it/radon/...
0
votes
1
answer
61
views
Two-yearly time series ticks in Dygraphs
By default, Dygraphs uses an internal algorithm to determine the best labelling for the x (time series) axis. However, it offers a number of overrides which can be used to force a particular labelling....
0
votes
0
answers
75
views
Dygraph trying to change 2D y-axis limits
I am having trouble simply changing the y-axis minimum limit from the previous developers’ callback. Y-axis maximum limit seems to work OK.
$("#simpleGraphs,#detailedGraphs").on('change', '....
0
votes
0
answers
38
views
highlight x-axis on x value condition
High everybody!
I have a series with constant time step e.g:
2009年07月13日,120
2009年07月14日,120
2009年07月15日,120
but sometimes some steps missed:
2009年07月16日,120
2009年07月19日,180
var inputdata = "2024/03/...
0
votes
1
answer
74
views
Arrange Multiple `dygraphs::dygraph()` Plots in Multiple Columns in a Figure in R
I know I can make a figure with 6 dygraph::dygraphs() plots arranged in 6 rows and one column.
library (dygraphs)
library (htmltools)
mdeaths <- structure(c(2134, 1863, 1877, 1877, 1492, 1249, 1280,...
1
vote
0
answers
34
views
dygraphs: Make X-Axis fit to element
how can i make the chart fit the parent element? So that Every Tick i specified in axes.x.ticker is visible. Not just when i pan. I want the whole thing resized to the parent element.
I cannot find an ...
0
votes
1
answer
94
views
Dygraphs does not work with csv file. How to fix it?
I am learning Dygraphs and I am trying to test the sample code on https://dygraphs.com/tutorial.html. The first example with embedded data works perfectly just the same as the graph on the web page. ...
1
vote
1
answer
138
views
How do I generate a time series in php that includes 100th of a second?
I am trying to get the array of dates for graphing in dygraphs, but my data is at 100Hz so I need the time scale to be at 100ths of a second. I am generating the array of data in php first, so my loop ...
1
vote
1
answer
154
views
individual axis label color with Dygraphs 2.2.1 in multiple graphs
Using CSS setting up a color for y-label or y2-label as described at dygraphs CSS reference works very well, example:
.dygraph-ylabel{ color:green; } .dygraph-y2label{ color:blue; }
This setting seems ...
1
vote
0
answers
95
views
How to integrate OffscreenCanvas in dygraph with web worker
Pure canvas can handle with OffscreenCanvas and web worker technology.
<!-- index.html -->
<canvas id="mainCanvas" width="300" height="150"></canvas>
//...
0
votes
0
answers
76
views
Using Dygraphs in node red ui_template
I want to use Dygraph in the node red dashboard. I used dashboard template and placed the simplest example of dygraphs in the template.
<html>
<head>
<script type="text/javascript&...
2
votes
2
answers
115
views
Unknown option axisLabelColor - Dygraph v2.2.1
I have recently upgraded to Dygraph v2.2.1 from v1.1.1 and the option axisLabelColor to color the labels of the axis is not there anymore. Was it substituted by another option or this option is not ...
0
votes
1
answer
59
views
Dygraph javascript to PNG incorrect zoom
I have a question regarding dygraphs in javascript. I have created a graph and want to export it to a PNG image:
function drawChart() {
g = new Dygraph(document.getElementById("dg_div&...
2
votes
1
answer
200
views
R/dygraphs Error: Unsupported type passed to argument 'data'
I am working with the R programming language.
I am following the tutorial here https://rstudio.github.io/dygraphs/ to make the following graph:
I tried to simulate some data for this example:
library(...
1
vote
1
answer
88
views
The `dygraphs::dyGroups()` and `dygraphs::dySeries()` Functions in R Don't Plot Point Shapes Correctly
I'm having some trouble using the dygraphs package to plot my time-series data. I'm trying to plot 6 response variable columns on the same graph, and I'm trying to split these 6 columns into 2 groups ...