Skip to content

Commit 2637032

Browse files
column heights fix (style issue)
1 parent e6fc4b8 commit 2637032

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

example/index.html

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,8 @@
4040
<a onclick="rSoon(this)">8</a>,
4141
<a onclick="rSoon(this)">9</a>,
4242
<a onclick="rSoon(this)">10</a>,
43-
<a onclick="rSoon(this)">11</a>
43+
<a onclick="rSoon(this)">11</a>,
44+
<a onclick="rSoon(this)">12</a>
4445
</div>
4546
<div id="mdx"></div>
4647
<form id="mdxForm" onsubmit="return false;">
@@ -79,7 +80,8 @@
7980
basicMDX: "SELECT NON EMPTY [Outlet]" +
8081
".[H1].[Region].Members ON 0,NON EMPTY [DateOfSale].[Actual].[YearSold].Members ON 1 FROM [HoleFoods]",
8182
DrillDownExpression: "NONEMPTYCROSSJOIN([DateOfSale].[Actual].[YearSold].Members,[Product].[P1].[Product Category].Members)"
82-
}
83+
},
84+
"SELECT NON EMPTY [AgeD].[H1].[Age Group].Members ON 0,NON EMPTY HEAD(NONEMPTYCROSSJOIN([DocD].[H1].[Doctor].Members,[AllerSevD].[H1].[Allergy Severities].Members),2000) ON 1 FROM [Patients]"
8385
][v],
8486
setup;
8587

source/css/LightPivot.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@
8787
}
8888

8989
.lpt th, .lpt td {
90-
white-space: pre;
90+
white-space: nowrap;
9191
box-sizing: border-box;
9292
overflow: hidden;
9393
}

source/js/DataController.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ DataController.prototype.setData = function (data) {
9999
return false;
100100
});
101101
}
102-
102+
//console.log(data);
103103
this._trigger();
104104
return data;
105105

0 commit comments

Comments
 (0)