Skip to content

Refreshing streaming chart #4223

Discussion options

You must be logged in to vote

Yes, it's possible. The refresh parameter is the part of the streaming options. Here is the full object for comparison:

public class ChartStreamingOptions
{
    /// <summary>
    /// Duration of the chart in milliseconds (how much time of data it will show).
    /// </summary>
    public int Duration { get; set; } = 10000;

    /// <summary>
    /// Refresh interval of data in milliseconds. onRefresh callback function will be called at this interval.
    /// </summary>
    public int Refresh { get; set; } = 1000;

    /// <summary>
    /// Delay added to the chart in milliseconds so that upcoming values are known before lines are plotted. This makes the chart look like a continual stream …

Replies: 2 comments

Comment options

You must be logged in to vote
0 replies
Answer selected by herzplatinedurchgebrannt
Comment options

You must be logged in to vote
0 replies
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants