It is currently September 29th, 2024, 9:29 pm

[Solved] Histogram graph style

General topics related to Rainmeter.
User avatar
Skars
Posts: 6
Joined: April 11th, 2013, 5:54 am
Location: Another timezone

[Solved] Histogram graph style

Post by Skars »

Hi there!

I'm new to the scene, and I couldn't find an extensive information about Histogram possibilities and limits, I've noticed that all histograms I see use "Filled Total" or "Filled Thread" style Histograms.

I want to make a Histogram for CPU that display the information in Graph style, in other words, the Histogram is made of lines like in a graph, and not of bars.

I think is more easy to read a histogram in Graph style than in Filled bars style.

Heres a pic to illustrate of what I mean, the first 3 gadgets are from Windows gadgets, by orbmu2k. The #4, is the Rainmeter skin mod I'm trying to mimic orbmu2k.

Image

Below the code for the Histogram I'm using:

Code: Select all

[MeterHistogram]
Meter=HISTOGRAM
MeasureName=MeasureCPU0
X=9
Y=127
W=110
H=30
PrimaryColor=ffffff
Antialias=1
Due to many bugs and software incompatibilities with sidebar.exe I'm moving to rainmeter

Is it possible to make Graph style histograms?

PS: The biggest benefit of Graph style histogram apart from being more clean to read, is that is possible to assemble multiple histograms together, like 4 to 8 CPU Threads in different colors, and make it possible to have an average reading of them all.

Thanks in advance!
Last edited by Skars on April 11th, 2013, 7:59 am, edited 1 time in total.
User avatar
moshi
Posts: 1740
Joined: November 13th, 2012, 9:53 pm

Re: Histogram graph style

Post by moshi »

you are not looking for a histogram.
a histogram looks like this:
Image
in your skin the intervals are 1 pixel wide.

you are looking for line meters:
http://docs.rainmeter.net/manual/meters/line
User avatar
Skars
Posts: 6
Joined: April 11th, 2013, 5:54 am
Location: Another timezone

Re: Histogram graph style

Post by Skars »

moshi wrote:you are not looking for a histogram.
a histogram looks like this:
http://upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Histogram_of_arrivals_per_minute.svg/200px-Histogram_of_arrivals_per_minute.svg.png
in your skin the intervals are 1 pixel wide.

you are looking for line meters:
http://docs.rainmeter.net/manual/meters/line
Hmm thank you man! is that what I was looking for, I mistook histogram with line meters, due that I couldn't reach that article.

Its working:

Image

Now I can finish the graphics, thanks!