Can teamcity plot histogram?
Answered
Can I change the definition of the x-axis?
I know the default x-axis is the build number.
Is it possible to plot a histogram on teamcity?
For example, I have a list of integers: list = [1, 3, 4, 5, 7], the bins are [0, 5,10]
The number of integers in list that in range [0, 5) is 3 (1, 3, 4);
The number of integers in list that in range [5, 10) is 2 (5, 7).
The label of the x-axis of the histogram should be [0, 5) and [5, 10), the corresponding values of the y-axis should be 3 and 2.
Can teamcicy plot such histograms?
Thanks a lot.
Please sign in to leave a comment.
Hello Guannan,
In TeamCity you can only plot graphs with builds on x-axis.
You can create a custom chart in the build script and add it as a report tab in TeamCity.