Displaying values in plot area

Robert on 20 Jan 2026 at 8:21
Latest activity Edit by Christopher Stapels on 20 Jan 2026 at 13:22

Is it possible to display a variable value within the ThingSpeak plot area?
Christopher Stapels
Christopher Stapels on 20 Jan 2026 at 13:21 (Edited on 20 Jan 2026 at 13:22)
Use a MATLAB Visualization and the text() function to add the number you want to the plot. You can add the visualization to your channel view. The built in ThingSpeak plots do not support adding a label like you asked, but there is also the numeric display widget that you can add yo you channel view.
Here is some example code ( I used MATLAB playground to help)
x = linspace(0,pi,200);
y = sin(x);
figure
plot(x,y,'b','LineWidth',1.5)
xlabel('x')
ylabel('sin(x)')
title('sin(x) from 0 to \pi')
grid on
text(pi/2, 0.5, '17', 'HorizontalAlignment', 'center', 'VerticalAlignment', 'middle', 'FontSize', 18, 'FontWeight', 'bold')
Shore
Shore on 20 Jan 2026 at 12:11
I am not brilliant with ThingSpeak but if you don’t get any other answers please let me try to help. Please give a more detailed description of what you want, perhaps sketch it down on paper so we can see your goal?
Robert
1
Post
0
Replies

Tags

No tags entered yet.