Skip to content

Commit e09c460

Browse files
committed
Fix chart display bug
1 parent 00d3f77 commit e09c460

4 files changed

+9
-8
lines changed

Editor/PerformanceTestingReportViewerWindow.cs Editor/PerformanceTestReportViewerWindow.cs

+4-4
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,16 @@
77

88
namespace PerformanceTestReportViewer.Editor
99
{
10-
public class PerformanceTestingReportViewerWindow : EditorWindow
10+
public class PerformanceTestReportViewerWindow : EditorWindow
1111
{
1212
private Editor.UI.PerformanceTestReportViewer viewer;
1313
private ViewerOptions viewerOptions;
1414

15-
[MenuItem("Window/Analysis/PerformanceTestingReportViewer %#&V")]
15+
[MenuItem("Window/Analysis/Performance Test Report Viewer %#&V")]
1616
public static void ShowExample()
1717
{
18-
PerformanceTestingReportViewerWindow wnd = GetWindow<PerformanceTestingReportViewerWindow>();
19-
wnd.titleContent = new GUIContent("PerformanceTestingReportViewerWindow");
18+
PerformanceTestReportViewerWindow wnd = GetWindow<PerformanceTestReportViewerWindow>();
19+
wnd.titleContent = new GUIContent("PerformanceTestReportViewerWindow");
2020
}
2121

2222
protected virtual string EditorConfigPath => Path.Combine(Application.persistentDataPath, "PerformanceTestingReportViewerConfig.json");

Editor/UI/ChartUtility.cs

+3-2
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ public static float YPosByIndex(Rect rect, int dataIndex, int count, out float y
2323
{
2424
ySize = rect.height / count;
2525
if (count < 2)
26-
return rect.yMax;
26+
return rect.yMin;
2727

2828
return rect.yMin + ySize * dataIndex;
2929
}
@@ -153,7 +153,8 @@ public static void GenerateBars(int index, int totalCount, double min, double ma
153153
Rect chartRect, MeshGenerationContext ctx, List<Rect> barRects, List<Vertex> vertices, List<ushort> indices)
154154
{
155155
double gap = max - min;
156-
float yPosStart = ChartUtility.YPosByIndex(chartRect, index, totalCount, out float ySize);
156+
157+
float yPosStart = YPosByIndex(chartRect, index, totalCount, out float ySize);
157158
float ySpacing = 1;
158159
float yMargin = 6;
159160
float eachYSize = (ySize - (2 * yMargin) - (values.Length * ySpacing)) / values.Length;

Editor/UI/Layouts/MultipleTestResultComparisonVisualizer.uxml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<ui:UXML xmlns:ui="UnityEngine.UIElements" xmlns:uie="UnityEditor.UIElements" xsi="http://www.w3.org/2001/XMLSchema-instance" engine="UnityEngine.UIElements" editor="UnityEditor.UIElements" noNamespaceSchemaLocation="../../../../../UIElementsSchema/UIElements.xsd" editor-extension-mode="False">
2-
<ui:VisualElement name="VisualElement" style="flex-grow: 1; background-color: rgb(255, 255, 255); min-width: 350px; min-height: 260px; border-left-color: rgb(29, 29, 29); border-right-color: rgb(29, 29, 29); border-top-color: rgb(29, 29, 29); border-bottom-color: rgb(29, 29, 29); border-left-width: 3px; border-right-width: 3px; border-top-width: 3px; border-bottom-width: 3px; margin-left: 1px; margin-right: 1px; margin-top: 1px; margin-bottom: 1px;">
3-
<ui:Label tabindex="-1" display-tooltip-when-elided="true" name="headerArea" style="background-color: rgb(55, 55, 55);">
2+
<ui:VisualElement name="VisualElement" style="flex-grow: 1; min-width: 350px; min-height: 260px; border-left-color: rgb(29, 29, 29); border-right-color: rgb(29, 29, 29); border-top-color: rgb(29, 29, 29); border-bottom-color: rgb(29, 29, 29); border-left-width: 3px; border-right-width: 3px; border-top-width: 3px; border-bottom-width: 3px; margin-left: 1px; margin-right: 1px; margin-top: 1px; margin-bottom: 1px;">
3+
<ui:Label tabindex="-1" display-tooltip-when-elided="true" name="headerArea">
44
<ui:Label tabindex="-1" text="Label" display-tooltip-when-elided="true" name="header" style="margin-left: 0; margin-right: 0; margin-top: 0; margin-bottom: 0; padding-left: 0; padding-right: 0; padding-top: 0; padding-bottom: 0; font-size: 16px; -unity-text-align: middle-center; -unity-font-style: bold;" />
55
</ui:Label>
66
<ui:VisualElement name="chartArea" style="flex-grow: 1; background-color: rgba(0, 0, 0, 0); flex-direction: row; padding-top: 20px;">

0 commit comments

Comments
 (0)