").css({
148 | width: "100%",
149 | height: "100%"
150 | });
151 | wrapper = new google.visualization.ChartWrapper({
152 | dataTable: dataTable,
153 | chartType: chartType,
154 | options: options
155 | });
156 | wrapper.draw(result[0]);
157 | result.bind("dblclick", function() {
158 | var editor;
159 | editor = new google.visualization.ChartEditor();
160 | google.visualization.events.addListener(editor, 'ok', function() {
161 | return editor.getChartWrapper().draw(result[0]);
162 | });
163 | return editor.openDialog(wrapper);
164 | });
165 | return result;
166 | };
167 | };
168 | return $.pivotUtilities.gchart_renderers = {
169 | "Line Chart": makeGoogleChart("LineChart"),
170 | "Bar Chart": makeGoogleChart("ColumnChart"),
171 | "Stacked Bar Chart": makeGoogleChart("ColumnChart", {
172 | isStacked: true
173 | }),
174 | "Area Chart": makeGoogleChart("AreaChart", {
175 | isStacked: true
176 | }),
177 | "Scatter Chart": makeGoogleChart("ScatterChart")
178 | };
179 | });
180 |
181 | }).call(this);
182 |
183 | //# sourceMappingURL=gchart_renderers.js.map
--------------------------------------------------------------------------------
/public/dist/gchart_renderers.min.js:
--------------------------------------------------------------------------------
1 | (function(){var t;(t=function(t){return"object"==typeof exports&&"object"==typeof module?t(require("jquery")):"function"==typeof define&&define.amd?define(["jquery"],t):t(jQuery)})(function(t){var e;return e=function(e,r){return function(n,a){var o,i,l,h,s,u,g,d,c,p,f,v,C,w,A,m,y,j,b,S,x,z,T,k,F,q,D,L,N,W,B;if(d={localeStrings:{vs:"vs",by:"by"},gchart:{}},a=t.extend(!0,{},d,a),null==(i=a.gchart).width&&(i.width=window.innerWidth/1.4),null==(l=a.gchart).height&&(l.height=window.innerHeight/1.4),k=n.getRowKeys(),0===k.length&&k.push([]),s=n.getColKeys(),0===s.length&&s.push([]),c=n.aggregatorName,n.valAttrs.length&&(c+="("+n.valAttrs.join(", ")+")"),C=function(){var t,e,r;for(r=[],t=0,e=k.length;e>t;t++)f=k[t],r.push(f.join("-"));return r}(),C.unshift(""),j=0,"ScatterChart"===e){u=[],S=n.tree;for(B in S){q=S[B];for(W in q)o=q[W],u.push([parseFloat(W),parseFloat(B),c+": \n"+o.format(o.value())])}g=new google.visualization.DataTable,g.addColumn("number",n.colAttrs.join("-")),g.addColumn("number",n.rowAttrs.join("-")),g.addColumn({type:"string",role:"tooltip"}),g.addRows(u),v=n.colAttrs.join("-"),D=n.rowAttrs.join("-"),F=""}else{for(u=[C],w=0,m=s.length;m>w;w++){for(h=s[w],z=[h.join("-")],j+=z[0].length,A=0,y=k.length;y>A;A++)T=k[A],o=n.getAggregator(T,h),null!=o.value()?(L=o.value(),z.push(t.isNumeric(L)?1>L?parseFloat(L.toPrecision(3)):parseFloat(L.toFixed(3)):L)):z.push(null);u.push(z)}g=google.visualization.arrayToDataTable(u),F=D=c,v=n.colAttrs.join("-"),""!==v&&(F+=" "+a.localeStrings.vs+" "+v),p=n.rowAttrs.join("-"),""!==p&&(F+=" "+a.localeStrings.by+" "+p)}return b={title:F,hAxis:{title:v,slantedText:j>50},vAxis:{title:D},tooltip:{textStyle:{fontName:"Arial",fontSize:12}}},"ColumnChart"===e&&(b.vAxis.minValue=0),"ScatterChart"===e?(b.legend={position:"none"},b.chartArea={width:"80%",height:"80%"}):2===u[0].length&&""===u[0][1]&&(b.legend={position:"none"}),b=t.extend(!0,{},b,a.gchart,r),x=t("
").css({width:"100%",height:"100%"}),N=new google.visualization.ChartWrapper({dataTable:g,chartType:e,options:b}),N.draw(x[0]),x.bind("dblclick",function(){var t;return t=new google.visualization.ChartEditor,google.visualization.events.addListener(t,"ok",function(){return t.getChartWrapper().draw(x[0])}),t.openDialog(N)}),x}},t.pivotUtilities.gchart_renderers={"Line Chart":e("LineChart"),"Bar Chart":e("ColumnChart"),"Stacked Bar Chart":e("ColumnChart",{isStacked:!0}),"Area Chart":e("AreaChart",{isStacked:!0}),"Scatter Chart":e("ScatterChart")}})}).call(this);
2 | //# sourceMappingURL=gchart_renderers.min.js.map
--------------------------------------------------------------------------------
/public/dist/pivot.css:
--------------------------------------------------------------------------------
1 | .pvtUi { color: #333; }
2 |
3 |
4 | table.pvtTable {
5 | font-size: 8pt;
6 | text-align: left;
7 | border-collapse: collapse;
8 | }
9 | table.pvtTable thead tr th, table.pvtTable tbody tr th {
10 | background-color: #e6EEEE;
11 | border: 1px solid #CDCDCD;
12 | font-size: 8pt;
13 | padding: 5px;
14 | }
15 |
16 | table.pvtTable .pvtColLabel {text-align: center;}
17 | table.pvtTable .pvtTotalLabel {text-align: right;}
18 |
19 | table.pvtTable tbody tr td {
20 | color: #3D3D3D;
21 | padding: 5px;
22 | background-color: #FFF;
23 | border: 1px solid #CDCDCD;
24 | vertical-align: top;
25 | text-align: right;
26 | }
27 |
28 | .pvtTotal, .pvtGrandTotal { font-weight: bold; }
29 |
30 | .pvtVals { text-align: center; white-space: nowrap;}
31 | .pvtRowOrder, .pvtColOrder {
32 | cursor:pointer;
33 | width: 15px;
34 | margin-left: 5px;
35 | display: inline-block; }
36 | .pvtAggregator { margin-bottom: 5px ;}
37 |
38 | .pvtAxisContainer, .pvtVals {
39 | border: 1px solid gray;
40 | background: #EEE;
41 | padding: 5px;
42 | min-width: 20px;
43 | min-height: 20px;
44 | }
45 | .pvtAxisContainer li {
46 | padding: 8px 6px;
47 | list-style-type: none;
48 | cursor:move;
49 | }
50 | .pvtAxisContainer li.pvtPlaceholder {
51 | -webkit-border-radius: 5px;
52 | padding: 3px 15px;
53 | -moz-border-radius: 5px;
54 | border-radius: 5px;
55 | border: 1px dashed #aaa;
56 | }
57 |
58 | .pvtAxisContainer li span.pvtAttr {
59 | -webkit-text-size-adjust: 100%;
60 | background: #F3F3F3;
61 | border: 1px solid #DEDEDE;
62 | padding: 2px 5px;
63 | white-space:nowrap;
64 | -webkit-border-radius: 5px;
65 | -moz-border-radius: 5px;
66 | border-radius: 5px;
67 | }
68 |
69 | .pvtTriangle {
70 | cursor:pointer;
71 | color: grey;
72 | }
73 |
74 | .pvtHorizList li { display: inline; }
75 | .pvtVertList { vertical-align: top; }
76 |
77 | .pvtFilteredAttribute { font-style: italic }
78 |
79 | .pvtFilterBox{
80 | z-index: 100;
81 | width: 300px;
82 | border: 1px solid gray;
83 | background-color: #fff;
84 | position: absolute;
85 | text-align: center;
86 | }
87 |
88 | .pvtFilterBox h4{ margin: 15px; }
89 | .pvtFilterBox p { margin: 10px auto; }
90 | .pvtFilterBox label { font-weight: normal; }
91 | .pvtFilterBox input[type='checkbox'] { margin-right: 10px; margin-left: 10px; }
92 | .pvtFilterBox input[type='text'] { width: 230px; }
93 | .pvtFilterBox .count { color: gray; font-weight: normal; margin-left: 3px;}
94 |
95 | .pvtCheckContainer{
96 | text-align: left;
97 | font-size: 14px;
98 | white-space: nowrap;
99 | overflow-y: scroll;
100 | width: 100%;
101 | max-height: 250px;
102 | border-top: 1px solid lightgrey;
103 | border-bottom: 1px solid lightgrey;
104 | }
105 |
106 | .pvtCheckContainer p{ margin: 5px; }
107 |
108 | .pvtRendererArea { padding: 5px;}
109 |
--------------------------------------------------------------------------------
/public/dist/pivot.da.js:
--------------------------------------------------------------------------------
1 | (function() {
2 | var callWithJQuery;
3 |
4 | callWithJQuery = function(pivotModule) {
5 | if (typeof exports === "object" && typeof module === "object") {
6 | return pivotModule(require("jquery"));
7 | } else if (typeof define === "function" && define.amd) {
8 | return define(["jquery"], pivotModule);
9 | } else {
10 | return pivotModule(jQuery);
11 | }
12 | };
13 |
14 | callWithJQuery(function($) {
15 | var nf, o, r, t, tpl;
16 | nf = $.pivotUtilities.numberFormat;
17 | tpl = $.pivotUtilities.aggregatorTemplates;
18 | r = nf({
19 | thousandsSep: ".",
20 | decimalSep: ","
21 | });
22 | t = nf({
23 | digitsAfterDecimal: 0,
24 | thousandsSep: ".",
25 | decimalSep: ","
26 | });
27 | o = nf({
28 | digitsAfterDecimal: 1,
29 | scaler: 100,
30 | suffix: "%",
31 | thousandsSep: ".",
32 | decimalSep: ","
33 | });
34 | return $.pivotUtilities.locales.da = {
35 | localeStrings: {
36 | renderError: "Der opstod en fejl, mens du trak i feltet",
37 | computeError: "Der opstod en fejl ved beregningen af feltet",
38 | uiRenderError: "Der opstod en fejl, mens den grafiske brugerflade blev beregnet",
39 | selectAll: "Vælg alle",
40 | selectNone: "Vælg ingen",
41 | tooMany: "(for mange værdier til at vise)",
42 | filterResults: "Filter værdier",
43 | totals: "I alt",
44 | vs: "vs",
45 | by: "af"
46 | },
47 | aggregators: {
48 | "Antal": tpl.count(t),
49 | "Antal Unikke værdier": tpl.countUnique(t),
50 | "Liste unikke værdier": tpl.listUnique(", "),
51 | "Sum": tpl.sum(r),
52 | "Sum i heltal": tpl.sum(t),
53 | "Gennemsnit": tpl.average(r),
54 | "Minimum": tpl.min(r),
55 | "Maximum": tpl.max(r),
56 | "Sum iforhold til sum": tpl.sumOverSum(r),
57 | "Sum iforhold til sum, øverst 80%": tpl.sumOverSumBound80(!0, r),
58 | "Sum iforhold til sum, lavest 80%": tpl.sumOverSumBound80(!1, r),
59 | "Andel af i alt sum": tpl.fractionOf(tpl.sum(), "total", o),
60 | "Andel af række sum": tpl.fractionOf(tpl.sum(), "row", o),
61 | "Andel af kolonner sum": tpl.fractionOf(tpl.sum(), "col", o),
62 | "Andel af i alt antal": tpl.fractionOf(tpl.count(), "total", o),
63 | "Andel af række antal": tpl.fractionOf(tpl.count(), "row", o),
64 | "Andel af kolonner antal": tpl.fractionOf(tpl.count(), "col", o)
65 | },
66 | renderers: {
67 | "Tabel": $.pivotUtilities.renderers.Table,
68 | "Tabel med søjler": $.pivotUtilities.renderers["Table Barchart"],
69 | "Heatmap": $.pivotUtilities.renderers.Heatmap,
70 | "Heatmap per række": $.pivotUtilities.renderers["Row Heatmap"],
71 | "Heatmap per kolonne": $.pivotUtilities.renderers["Col Heatmap"]
72 | }
73 | };
74 | });
75 |
76 | }).call(this);
77 |
78 | //# sourceMappingURL=pivot.da.js.map
--------------------------------------------------------------------------------
/public/dist/pivot.da.js.map:
--------------------------------------------------------------------------------
1 | {"version":3,"sources":["pivot.da.coffee"],"names":[],"mappings":"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","file":"pivot.da.js","sourceRoot":"/source/","sourcesContent":["callWithJQuery = (pivotModule) ->\n if typeof exports is \"object\" and typeof module is \"object\" # CommonJS\n pivotModule require(\"jquery\")\n else if typeof define is \"function\" and define.amd # AMD\n define [\"jquery\"], pivotModule\n # Plain browser env\n else\n pivotModule jQuery\n \ncallWithJQuery ($) ->\n nf = $.pivotUtilities.numberFormat\n tpl = $.pivotUtilities.aggregatorTemplates\n\n r = nf({\n thousandsSep: \".\",\n decimalSep: \",\"\n })\n\n t = nf({\n digitsAfterDecimal: 0,\n thousandsSep: \".\",\n decimalSep: \",\"\n })\n\n o = nf({\n digitsAfterDecimal: 1,\n scaler: 100,\n suffix: \"%\",\n thousandsSep: \".\",\n decimalSep: \",\"\n })\n\n $.pivotUtilities.locales.da = \n localeStrings: \n renderError: \"Der opstod en fejl, mens du trak i feltet\",\n computeError: \"Der opstod en fejl ved beregningen af feltet\",\n uiRenderError: \"Der opstod en fejl, mens den grafiske brugerflade blev beregnet\",\n selectAll: \"Vælg alle\",\n selectNone: \"Vælg ingen\",\n tooMany: \"(for mange værdier til at vise)\",\n filterResults: \"Filter værdier\",\n totals: \"I alt\",\n vs: \"vs\",\n by: \"af\"\n aggregators: \n \"Antal\": tpl.count(t),\n \"Antal Unikke værdier\": tpl.countUnique(t),\n \"Liste unikke værdier\": tpl.listUnique(\", \"),\n \"Sum\": tpl.sum(r),\n \"Sum i heltal\": tpl.sum(t),\n \"Gennemsnit\": tpl.average(r),\n \"Minimum\": tpl.min(r),\n \"Maximum\": tpl.max(r),\n \"Sum iforhold til sum\": tpl.sumOverSum(r),\n \"Sum iforhold til sum, øverst 80%\": tpl.sumOverSumBound80(!0, r),\n \"Sum iforhold til sum, lavest 80%\": tpl.sumOverSumBound80(!1, r),\n \"Andel af i alt sum\": tpl.fractionOf(tpl.sum(), \"total\", o),\n \"Andel af række sum\": tpl.fractionOf(tpl.sum(), \"row\", o),\n \"Andel af kolonner sum\": tpl.fractionOf(tpl.sum(), \"col\", o),\n \"Andel af i alt antal\": tpl.fractionOf(tpl.count(), \"total\", o),\n \"Andel af række antal\": tpl.fractionOf(tpl.count(), \"row\", o),\n \"Andel af kolonner antal\": tpl.fractionOf(tpl.count(), \"col\", o)\n renderers: \n \"Tabel\": $.pivotUtilities.renderers.Table,\n \"Tabel med søjler\": $.pivotUtilities.renderers[\"Table Barchart\"],\n \"Heatmap\": $.pivotUtilities.renderers.Heatmap,\n \"Heatmap per række\": $.pivotUtilities.renderers[\"Row Heatmap\"],\n \"Heatmap per kolonne\": $.pivotUtilities.renderers[\"Col Heatmap\"]\n"]}
--------------------------------------------------------------------------------
/public/dist/pivot.da.min.js:
--------------------------------------------------------------------------------
1 | (function(){var e;(e=function(e){return"object"==typeof exports&&"object"==typeof module?e(require("jquery")):"function"==typeof define&&define.amd?define(["jquery"],e):e(jQuery)})(function(e){var t,r,i,a,n;return t=e.pivotUtilities.numberFormat,n=e.pivotUtilities.aggregatorTemplates,i=t({thousandsSep:".",decimalSep:","}),a=t({digitsAfterDecimal:0,thousandsSep:".",decimalSep:","}),r=t({digitsAfterDecimal:1,scaler:100,suffix:"%",thousandsSep:".",decimalSep:","}),e.pivotUtilities.locales.da={localeStrings:{renderError:"Der opstod en fejl, mens du trak i feltet",computeError:"Der opstod en fejl ved beregningen af feltet",uiRenderError:"Der opstod en fejl, mens den grafiske brugerflade blev beregnet",selectAll:"Vælg alle",selectNone:"Vælg ingen",tooMany:"(for mange værdier til at vise)",filterResults:"Filter værdier",totals:"I alt",vs:"vs",by:"af"},aggregators:{Antal:n.count(a),"Antal Unikke værdier":n.countUnique(a),"Liste unikke værdier":n.listUnique(", "),Sum:n.sum(i),"Sum i heltal":n.sum(a),Gennemsnit:n.average(i),Minimum:n.min(i),Maximum:n.max(i),"Sum iforhold til sum":n.sumOverSum(i),"Sum iforhold til sum, øverst 80%":n.sumOverSumBound80(!0,i),"Sum iforhold til sum, lavest 80%":n.sumOverSumBound80(!1,i),"Andel af i alt sum":n.fractionOf(n.sum(),"total",r),"Andel af række sum":n.fractionOf(n.sum(),"row",r),"Andel af kolonner sum":n.fractionOf(n.sum(),"col",r),"Andel af i alt antal":n.fractionOf(n.count(),"total",r),"Andel af række antal":n.fractionOf(n.count(),"row",r),"Andel af kolonner antal":n.fractionOf(n.count(),"col",r)},renderers:{Tabel:e.pivotUtilities.renderers.Table,"Tabel med søjler":e.pivotUtilities.renderers["Table Barchart"],Heatmap:e.pivotUtilities.renderers.Heatmap,"Heatmap per række":e.pivotUtilities.renderers["Row Heatmap"],"Heatmap per kolonne":e.pivotUtilities.renderers["Col Heatmap"]}}})}).call(this);
2 | //# sourceMappingURL=pivot.da.min.js.map
--------------------------------------------------------------------------------
/public/dist/pivot.da.min.js.map:
--------------------------------------------------------------------------------
1 | {"version":3,"sources":["/source/pivot.da.coffee","pivot.da.min.js"],"names":["callWithJQuery","pivotModule","exports","module","require","define","amd","jQuery","$","nf","o","r","t","tpl","pivotUtilities","numberFormat","aggregatorTemplates","thousandsSep","decimalSep","digitsAfterDecimal","scaler","suffix","locales","da","localeStrings","renderError","computeError","uiRenderError","selectAll","selectNone","tooMany","filterResults","totals","vs","by","aggregators","Antal","count","Antal Unikke værdier","countUnique","Liste unikke værdier","listUnique","Sum","sum","Sum i heltal","Gennemsnit","average","Minimum","min","Maximum","max","Sum iforhold til sum","sumOverSum","Sum iforhold til sum, øverst 80%","sumOverSumBound80","Sum iforhold til sum, lavest 80%","Andel af i alt sum","fractionOf","Andel af række sum","Andel af kolonner sum","Andel af i alt antal","Andel af række antal","Andel af kolonner antal","renderers","Tabel","Table","Tabel med søjler","Heatmap","Heatmap per række","Heatmap per kolonne","call","this"],"mappings":"CAAA,WAAA,GAAAA,IAAAA,EAAiB,SAACC,GACd,MAAqB,gBAAlBC,UAAgD,gBAAjBC,QAC9BF,EAAYG,QAAQ,WACC,kBAAjBC,SAAgCA,OAAOC,IAC3CD,QAAQ,UAAWJ,GAGnBA,EAAYM,UAEL,SAACC,GACZ,GAAAC,GAAAC,EAAAC,EAAAC,EAAAC,CCuBA,ODvBAJ,GAAKD,EAAEM,eAAeC,aACtBF,EAAML,EAAEM,eAAeE,oBAEvBL,EAAIF,GACIQ,aAAc,IACdC,WAAY,MAGpBN,EAAIH,GACIU,mBAAoB,EACpBF,aAAc,IACdC,WAAY,MAGpBR,EAAID,GACIU,mBAAoB,EACpBC,OAAQ,IACRC,OAAQ,IACRJ,aAAc,IACdC,WAAY,MAGpBV,EAAEM,eAAeQ,QAAQC,IACrBC,eACIC,YAAa,4CACbC,aAAc,+CACdC,cAAe,kEACfC,UAAW,YACXC,WAAY,aACZC,QAAS,kCACTC,cAAe,iBACfC,OAAQ,QACRC,GAAI,KACJC,GAAI,MACRC,aACIC,MAASvB,EAAIwB,MAAMzB,GACnB0B,uBAAwBzB,EAAI0B,YAAY3B,GACxC4B,uBAAwB3B,EAAI4B,WAAW,MACvCC,IAAO7B,EAAI8B,IAAIhC,GACfiC,eAAgB/B,EAAI8B,IAAI/B,GACxBiC,WAAchC,EAAIiC,QAAQnC,GAC1BoC,QAAWlC,EAAImC,IAAIrC,GACnBsC,QAAWpC,EAAIqC,IAAIvC,GACnBwC,uBAAwBtC,EAAIuC,WAAWzC,GACvC0C,mCAAoCxC,EAAIyC,mBAAkB,EAAI3C,GAC9D4C,oCAAqC1C,EAAIyC,mBAAkB,EAAI3C,GAC/D6C,qBAAsB3C,EAAI4C,WAAW5C,EAAI8B,MAAO,QAASjC,GACzDgD,qBAAsB7C,EAAI4C,WAAW5C,EAAI8B,MAAO,MAAOjC,GACvDiD,wBAAyB9C,EAAI4C,WAAW5C,EAAI8B,MAAO,MAAOjC,GAC1DkD,uBAAwB/C,EAAI4C,WAAW5C,EAAIwB,QAAS,QAAS3B,GAC7DmD,uBAAwBhD,EAAI4C,WAAW5C,EAAIwB,QAAS,MAAO3B,GAC3DoD,0BAA2BjD,EAAI4C,WAAW5C,EAAIwB,QAAS,MAAO3B,IAClEqD,WACIC,MAASxD,EAAEM,eAAeiD,UAAUE,MACpCC,mBAAoB1D,EAAEM,eAAeiD,UAAU,kBAC/CI,QAAW3D,EAAEM,eAAeiD,UAAUI,QACtCC,oBAAqB5D,EAAEM,eAAeiD,UAAU,eAChDM,sBAAuB7D,EAAEM,eAAeiD,UAAU,qBCQ3DO,KAAKC","file":"pivot.da.min.js","sourcesContent":["callWithJQuery = (pivotModule) ->\n if typeof exports is \"object\" and typeof module is \"object\" # CommonJS\n pivotModule require(\"jquery\")\n else if typeof define is \"function\" and define.amd # AMD\n define [\"jquery\"], pivotModule\n # Plain browser env\n else\n pivotModule jQuery\n \ncallWithJQuery ($) ->\n nf = $.pivotUtilities.numberFormat\n tpl = $.pivotUtilities.aggregatorTemplates\n\n r = nf({\n thousandsSep: \".\",\n decimalSep: \",\"\n })\n\n t = nf({\n digitsAfterDecimal: 0,\n thousandsSep: \".\",\n decimalSep: \",\"\n })\n\n o = nf({\n digitsAfterDecimal: 1,\n scaler: 100,\n suffix: \"%\",\n thousandsSep: \".\",\n decimalSep: \",\"\n })\n\n $.pivotUtilities.locales.da = \n localeStrings: \n renderError: \"Der opstod en fejl, mens du trak i feltet\",\n computeError: \"Der opstod en fejl ved beregningen af feltet\",\n uiRenderError: \"Der opstod en fejl, mens den grafiske brugerflade blev beregnet\",\n selectAll: \"Vælg alle\",\n selectNone: \"Vælg ingen\",\n tooMany: \"(for mange værdier til at vise)\",\n filterResults: \"Filter værdier\",\n totals: \"I alt\",\n vs: \"vs\",\n by: \"af\"\n aggregators: \n \"Antal\": tpl.count(t),\n \"Antal Unikke værdier\": tpl.countUnique(t),\n \"Liste unikke værdier\": tpl.listUnique(\", \"),\n \"Sum\": tpl.sum(r),\n \"Sum i heltal\": tpl.sum(t),\n \"Gennemsnit\": tpl.average(r),\n \"Minimum\": tpl.min(r),\n \"Maximum\": tpl.max(r),\n \"Sum iforhold til sum\": tpl.sumOverSum(r),\n \"Sum iforhold til sum, øverst 80%\": tpl.sumOverSumBound80(!0, r),\n \"Sum iforhold til sum, lavest 80%\": tpl.sumOverSumBound80(!1, r),\n \"Andel af i alt sum\": tpl.fractionOf(tpl.sum(), \"total\", o),\n \"Andel af række sum\": tpl.fractionOf(tpl.sum(), \"row\", o),\n \"Andel af kolonner sum\": tpl.fractionOf(tpl.sum(), \"col\", o),\n \"Andel af i alt antal\": tpl.fractionOf(tpl.count(), \"total\", o),\n \"Andel af række antal\": tpl.fractionOf(tpl.count(), \"row\", o),\n \"Andel af kolonner antal\": tpl.fractionOf(tpl.count(), \"col\", o)\n renderers: \n \"Tabel\": $.pivotUtilities.renderers.Table,\n \"Tabel med søjler\": $.pivotUtilities.renderers[\"Table Barchart\"],\n \"Heatmap\": $.pivotUtilities.renderers.Heatmap,\n \"Heatmap per række\": $.pivotUtilities.renderers[\"Row Heatmap\"],\n \"Heatmap per kolonne\": $.pivotUtilities.renderers[\"Col Heatmap\"]\n","(function(){var e;(e=function(e){return\"object\"==typeof exports&&\"object\"==typeof module?e(require(\"jquery\")):\"function\"==typeof define&&define.amd?define([\"jquery\"],e):e(jQuery)})(function(e){var t,r,i,a,n;return t=e.pivotUtilities.numberFormat,n=e.pivotUtilities.aggregatorTemplates,i=t({thousandsSep:\".\",decimalSep:\",\"}),a=t({digitsAfterDecimal:0,thousandsSep:\".\",decimalSep:\",\"}),r=t({digitsAfterDecimal:1,scaler:100,suffix:\"%\",thousandsSep:\".\",decimalSep:\",\"}),e.pivotUtilities.locales.da={localeStrings:{renderError:\"Der opstod en fejl, mens du trak i feltet\",computeError:\"Der opstod en fejl ved beregningen af feltet\",uiRenderError:\"Der opstod en fejl, mens den grafiske brugerflade blev beregnet\",selectAll:\"Vælg alle\",selectNone:\"Vælg ingen\",tooMany:\"(for mange værdier til at vise)\",filterResults:\"Filter værdier\",totals:\"I alt\",vs:\"vs\",by:\"af\"},aggregators:{Antal:n.count(a),\"Antal Unikke værdier\":n.countUnique(a),\"Liste unikke værdier\":n.listUnique(\", \"),Sum:n.sum(i),\"Sum i heltal\":n.sum(a),Gennemsnit:n.average(i),Minimum:n.min(i),Maximum:n.max(i),\"Sum iforhold til sum\":n.sumOverSum(i),\"Sum iforhold til sum, øverst 80%\":n.sumOverSumBound80(!0,i),\"Sum iforhold til sum, lavest 80%\":n.sumOverSumBound80(!1,i),\"Andel af i alt sum\":n.fractionOf(n.sum(),\"total\",r),\"Andel af række sum\":n.fractionOf(n.sum(),\"row\",r),\"Andel af kolonner sum\":n.fractionOf(n.sum(),\"col\",r),\"Andel af i alt antal\":n.fractionOf(n.count(),\"total\",r),\"Andel af række antal\":n.fractionOf(n.count(),\"row\",r),\"Andel af kolonner antal\":n.fractionOf(n.count(),\"col\",r)},renderers:{Tabel:e.pivotUtilities.renderers.Table,\"Tabel med søjler\":e.pivotUtilities.renderers[\"Table Barchart\"],Heatmap:e.pivotUtilities.renderers.Heatmap,\"Heatmap per række\":e.pivotUtilities.renderers[\"Row Heatmap\"],\"Heatmap per kolonne\":e.pivotUtilities.renderers[\"Col Heatmap\"]}}})}).call(this);\n//# sourceMappingURL=pivot.da.min.js.map"],"sourceRoot":"/source/"}
--------------------------------------------------------------------------------
/public/dist/pivot.de.js:
--------------------------------------------------------------------------------
1 | (function() {
2 | var callWithJQuery;
3 |
4 | callWithJQuery = function(pivotModule) {
5 | if (typeof exports === "object" && typeof module === "object") {
6 | return pivotModule(require("jquery"));
7 | } else if (typeof define === "function" && define.amd) {
8 | return define(["jquery"], pivotModule);
9 | } else {
10 | return pivotModule(jQuery);
11 | }
12 | };
13 |
14 | callWithJQuery(function($) {
15 | var frFmt, frFmtInt, frFmtPct, nf, tpl;
16 | nf = $.pivotUtilities.numberFormat;
17 | tpl = $.pivotUtilities.aggregatorTemplates;
18 | frFmt = nf({
19 | thousandsSep: " ",
20 | decimalSep: ","
21 | });
22 | frFmtInt = nf({
23 | digitsAfterDecimal: 0,
24 | thousandsSep: " ",
25 | decimalSep: ","
26 | });
27 | frFmtPct = nf({
28 | digitsAfterDecimal: 1,
29 | scaler: 100,
30 | suffix: "%",
31 | thousandsSep: " ",
32 | decimalSep: ","
33 | });
34 | return $.pivotUtilities.locales.de = {
35 | localeStrings: {
36 | renderError: "Bei der Darstellung der Pivot-Tabelle ist ein Fehler aufgetreten.",
37 | computeError: "Bei der Berechnung der Pivot-Tabelle ist ein Fehler aufgetreten.",
38 | uiRenderError: "Bei der Darstellung Oberfläche der Pivot-Tabelle ist ein Fehler aufgetreten.",
39 | selectAll: "Alles auswählen",
40 | selectNone: "Nichts auswählen",
41 | tooMany: "(zu viele für Liste)",
42 | filterResults: "Ergebnisse filtern",
43 | totals: "Gesamt",
44 | vs: "gegen",
45 | by: "pro"
46 | },
47 | aggregators: {
48 | "Anzahl": tpl.count(frFmtInt),
49 | "Anzahl eindeutiger Werte": tpl.countUnique(frFmtInt),
50 | "Liste eindeutiger Werte": tpl.listUnique(", "),
51 | "Summe": tpl.sum(frFmt),
52 | "Ganzzahlige Summe": tpl.sum(frFmtInt),
53 | "Durchschnitt": tpl.average(frFmt),
54 | "Minimum": tpl.min(frFmt),
55 | "Maximum": tpl.max(frFmt),
56 | "Summe über Summe": tpl.sumOverSum(frFmt),
57 | "80% Obergrenze": tpl.sumOverSumBound80(true, frFmt),
58 | "80% Untergrenze": tpl.sumOverSumBound80(false, frFmt),
59 | "Summe als Anteil von Gesamt": tpl.fractionOf(tpl.sum(), "total", frFmtPct),
60 | "Summe als Anteil von Zeile": tpl.fractionOf(tpl.sum(), "row", frFmtPct),
61 | "Summe als Anteil von Spalte": tpl.fractionOf(tpl.sum(), "col", frFmtPct),
62 | "Anzahl als Anteil von Gesamt": tpl.fractionOf(tpl.count(), "total", frFmtPct),
63 | "Anzahl als Anteil von Zeile": tpl.fractionOf(tpl.count(), "row", frFmtPct),
64 | "Anzahl als Anteil von Spalte": tpl.fractionOf(tpl.count(), "col", frFmtPct)
65 | },
66 | renderers: {
67 | "Tabelle": $.pivotUtilities.renderers["Table"],
68 | "Tabelle mit Balkendiagramm": $.pivotUtilities.renderers["Table Barchart"],
69 | "Heatmap": $.pivotUtilities.renderers["Heatmap"],
70 | "Heatmap pro Zeile": $.pivotUtilities.renderers["Row Heatmap"],
71 | "Heatmap pro Spalte": $.pivotUtilities.renderers["Col Heatmap"]
72 | }
73 | };
74 | });
75 |
76 | }).call(this);
77 |
78 | //# sourceMappingURL=pivot.de.js.map
--------------------------------------------------------------------------------
/public/dist/pivot.de.js.map:
--------------------------------------------------------------------------------
1 | {"version":3,"sources":["pivot.de.coffee"],"names":[],"mappings":"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","file":"pivot.de.js","sourceRoot":"/source/","sourcesContent":["callWithJQuery = (pivotModule) ->\n if typeof exports is \"object\" and typeof module is \"object\" # CommonJS\n pivotModule require(\"jquery\")\n else if typeof define is \"function\" and define.amd # AMD\n define [\"jquery\"], pivotModule\n # Plain browser env\n else\n pivotModule jQuery\n \ncallWithJQuery ($) ->\n nf = $.pivotUtilities.numberFormat\n tpl = $.pivotUtilities.aggregatorTemplates\n\n frFmt = nf(thousandsSep: \" \", decimalSep: \",\")\n frFmtInt = nf(digitsAfterDecimal: 0, thousandsSep: \" \", decimalSep: \",\")\n frFmtPct = nf(digitsAfterDecimal: 1, scaler: 100, suffix: \"%\", thousandsSep: \" \", decimalSep: \",\")\n\n $.pivotUtilities.locales.de = \n localeStrings:\n renderError: \"Bei der Darstellung der Pivot-Tabelle ist ein Fehler aufgetreten.\"\n computeError: \"Bei der Berechnung der Pivot-Tabelle ist ein Fehler aufgetreten.\"\n uiRenderError: \"Bei der Darstellung Oberfläche der Pivot-Tabelle ist ein Fehler aufgetreten.\"\n selectAll: \"Alles auswählen\"\n selectNone: \"Nichts auswählen\"\n tooMany: \"(zu viele für Liste)\"\n filterResults: \"Ergebnisse filtern\"\n totals: \"Gesamt\"\n vs: \"gegen\"\n by: \"pro\"\n\n aggregators: \n \"Anzahl\": tpl.count(frFmtInt)\n \"Anzahl eindeutiger Werte\": tpl.countUnique(frFmtInt)\n \"Liste eindeutiger Werte\": tpl.listUnique(\", \")\n \"Summe\": tpl.sum(frFmt)\n \"Ganzzahlige Summe\":\t\t\ttpl.sum(frFmtInt)\n \"Durchschnitt\": tpl.average(frFmt)\n \"Minimum\": tpl.min(frFmt)\n \"Maximum\": tpl.max(frFmt)\n \"Summe über Summe\": tpl.sumOverSum(frFmt)\n \"80% Obergrenze\": tpl.sumOverSumBound80(true, frFmt)\n \"80% Untergrenze\": \t\ttpl.sumOverSumBound80(false, frFmt)\n \"Summe als Anteil von Gesamt\": tpl.fractionOf(tpl.sum(), \"total\", frFmtPct)\n \"Summe als Anteil von Zeile\": tpl.fractionOf(tpl.sum(), \"row\", frFmtPct)\n \"Summe als Anteil von Spalte\": tpl.fractionOf(tpl.sum(), \"col\", frFmtPct)\n \"Anzahl als Anteil von Gesamt\": tpl.fractionOf(tpl.count(), \"total\", frFmtPct)\n \"Anzahl als Anteil von Zeile\": tpl.fractionOf(tpl.count(), \"row\", frFmtPct)\n \"Anzahl als Anteil von Spalte\": tpl.fractionOf(tpl.count(), \"col\", frFmtPct)\n\n renderers:\n \"Tabelle\": $.pivotUtilities.renderers[\"Table\"]\n \"Tabelle mit Balkendiagramm\": $.pivotUtilities.renderers[\"Table Barchart\"]\n \"Heatmap\": $.pivotUtilities.renderers[\"Heatmap\"]\n \"Heatmap pro Zeile\": $.pivotUtilities.renderers[\"Row Heatmap\"]\n \"Heatmap pro Spalte\": $.pivotUtilities.renderers[\"Col Heatmap\"]\n"]}
--------------------------------------------------------------------------------
/public/dist/pivot.de.min.js:
--------------------------------------------------------------------------------
1 | (function(){var e;(e=function(e){return"object"==typeof exports&&"object"==typeof module?e(require("jquery")):"function"==typeof define&&define.amd?define(["jquery"],e):e(jQuery)})(function(e){var t,i,r,l,a;return l=e.pivotUtilities.numberFormat,a=e.pivotUtilities.aggregatorTemplates,t=l({thousandsSep:" ",decimalSep:","}),i=l({digitsAfterDecimal:0,thousandsSep:" ",decimalSep:","}),r=l({digitsAfterDecimal:1,scaler:100,suffix:"%",thousandsSep:" ",decimalSep:","}),e.pivotUtilities.locales.de={localeStrings:{renderError:"Bei der Darstellung der Pivot-Tabelle ist ein Fehler aufgetreten.",computeError:"Bei der Berechnung der Pivot-Tabelle ist ein Fehler aufgetreten.",uiRenderError:"Bei der Darstellung Oberfläche der Pivot-Tabelle ist ein Fehler aufgetreten.",selectAll:"Alles auswählen",selectNone:"Nichts auswählen",tooMany:"(zu viele für Liste)",filterResults:"Ergebnisse filtern",totals:"Gesamt",vs:"gegen",by:"pro"},aggregators:{Anzahl:a.count(i),"Anzahl eindeutiger Werte":a.countUnique(i),"Liste eindeutiger Werte":a.listUnique(", "),Summe:a.sum(t),"Ganzzahlige Summe":a.sum(i),Durchschnitt:a.average(t),Minimum:a.min(t),Maximum:a.max(t),"Summe über Summe":a.sumOverSum(t),"80% Obergrenze":a.sumOverSumBound80(!0,t),"80% Untergrenze":a.sumOverSumBound80(!1,t),"Summe als Anteil von Gesamt":a.fractionOf(a.sum(),"total",r),"Summe als Anteil von Zeile":a.fractionOf(a.sum(),"row",r),"Summe als Anteil von Spalte":a.fractionOf(a.sum(),"col",r),"Anzahl als Anteil von Gesamt":a.fractionOf(a.count(),"total",r),"Anzahl als Anteil von Zeile":a.fractionOf(a.count(),"row",r),"Anzahl als Anteil von Spalte":a.fractionOf(a.count(),"col",r)},renderers:{Tabelle:e.pivotUtilities.renderers.Table,"Tabelle mit Balkendiagramm":e.pivotUtilities.renderers["Table Barchart"],Heatmap:e.pivotUtilities.renderers.Heatmap,"Heatmap pro Zeile":e.pivotUtilities.renderers["Row Heatmap"],"Heatmap pro Spalte":e.pivotUtilities.renderers["Col Heatmap"]}}})}).call(this);
2 | //# sourceMappingURL=pivot.de.min.js.map
--------------------------------------------------------------------------------
/public/dist/pivot.de.min.js.map:
--------------------------------------------------------------------------------
1 | {"version":3,"sources":["/source/pivot.de.coffee","pivot.de.min.js"],"names":["callWithJQuery","pivotModule","exports","module","require","define","amd","jQuery","$","frFmt","frFmtInt","frFmtPct","nf","tpl","pivotUtilities","numberFormat","aggregatorTemplates","thousandsSep","decimalSep","digitsAfterDecimal","scaler","suffix","locales","de","localeStrings","renderError","computeError","uiRenderError","selectAll","selectNone","tooMany","filterResults","totals","vs","by","aggregators","Anzahl","count","Anzahl eindeutiger Werte","countUnique","Liste eindeutiger Werte","listUnique","Summe","sum","Ganzzahlige Summe","Durchschnitt","average","Minimum","min","Maximum","max","Summe über Summe","sumOverSum","80% Obergrenze","sumOverSumBound80","80% Untergrenze","Summe als Anteil von Gesamt","fractionOf","Summe als Anteil von Zeile","Summe als Anteil von Spalte","Anzahl als Anteil von Gesamt","Anzahl als Anteil von Zeile","Anzahl als Anteil von Spalte","renderers","Tabelle","Tabelle mit Balkendiagramm","Heatmap","Heatmap pro Zeile","Heatmap pro Spalte","call","this"],"mappings":"CAAA,WAAA,GAAAA,IAAAA,EAAiB,SAACC,GACd,MAAqB,gBAAlBC,UAAgD,gBAAjBC,QAC9BF,EAAYG,QAAQ,WACC,kBAAjBC,SAAgCA,OAAOC,IAC3CD,QAAQ,UAAWJ,GAGnBA,EAAYM,UAEL,SAACC,GACZ,GAAAC,GAAAC,EAAAC,EAAAC,EAAAC,CCuBA,ODvBAD,GAAKJ,EAAEM,eAAeC,aACtBF,EAAML,EAAEM,eAAeE,oBAEvBP,EAAWG,GAAGK,aAAc,IAAKC,WAAY,MAC7CR,EAAWE,GAAGO,mBAAoB,EAAGF,aAAc,IAAKC,WAAY,MACpEP,EAAWC,GAAGO,mBAAoB,EAAGC,OAAQ,IAAKC,OAAQ,IAAKJ,aAAc,IAAKC,WAAY,MAE9FV,EAAEM,eAAeQ,QAAQC,IACrBC,eACIC,YAAa,oEACbC,aAAc,mEACdC,cAAe,+EACfC,UAAW,kBACXC,WAAY,mBACZC,QAAS,uBACTC,cAAe,qBACfC,OAAQ,SACRC,GAAI,QACJC,GAAI,OAERC,aACIC,OAAgCvB,EAAIwB,MAAM3B,GAC1C4B,2BAAgCzB,EAAI0B,YAAY7B,GAChD8B,0BAAgC3B,EAAI4B,WAAW,MAC/CC,MAAgC7B,EAAI8B,IAAIlC,GACxCmC,oBAAuB/B,EAAI8B,IAAIjC,GAC/BmC,aAAgChC,EAAIiC,QAAQrC,GAC5CsC,QAAgClC,EAAImC,IAAIvC,GACxCwC,QAAgCpC,EAAIqC,IAAIzC,GACxC0C,mBAAgCtC,EAAIuC,WAAW3C,GAC/C4C,iBAAgCxC,EAAIyC,mBAAkB,EAAM7C,GAC5D8C,kBAA4B1C,EAAIyC,mBAAkB,EAAO7C,GACzD+C,8BAAgC3C,EAAI4C,WAAW5C,EAAI8B,MAAS,QAAShC,GACrE+C,6BAAgC7C,EAAI4C,WAAW5C,EAAI8B,MAAS,MAAShC,GACrEgD,8BAAgC9C,EAAI4C,WAAW5C,EAAI8B,MAAS,MAAShC,GACrEiD,+BAAgC/C,EAAI4C,WAAW5C,EAAIwB,QAAS,QAAS1B,GACrEkD,8BAAgChD,EAAI4C,WAAW5C,EAAIwB,QAAS,MAAS1B,GACrEmD,+BAAgCjD,EAAI4C,WAAW5C,EAAIwB,QAAS,MAAS1B,IAEzEoD,WACIC,QAAgCxD,EAAEM,eAAeiD,UAAU,MAC3DE,6BAAgCzD,EAAEM,eAAeiD,UAAU,kBAC3DG,QAAgC1D,EAAEM,eAAeiD,UAAU,QAC3DI,oBAAgC3D,EAAEM,eAAeiD,UAAU,eAC3DK,qBAAgC5D,EAAEM,eAAeiD,UAAU,qBCqBpEM,KAAKC","file":"pivot.de.min.js","sourcesContent":["callWithJQuery = (pivotModule) ->\n if typeof exports is \"object\" and typeof module is \"object\" # CommonJS\n pivotModule require(\"jquery\")\n else if typeof define is \"function\" and define.amd # AMD\n define [\"jquery\"], pivotModule\n # Plain browser env\n else\n pivotModule jQuery\n \ncallWithJQuery ($) ->\n nf = $.pivotUtilities.numberFormat\n tpl = $.pivotUtilities.aggregatorTemplates\n\n frFmt = nf(thousandsSep: \" \", decimalSep: \",\")\n frFmtInt = nf(digitsAfterDecimal: 0, thousandsSep: \" \", decimalSep: \",\")\n frFmtPct = nf(digitsAfterDecimal: 1, scaler: 100, suffix: \"%\", thousandsSep: \" \", decimalSep: \",\")\n\n $.pivotUtilities.locales.de = \n localeStrings:\n renderError: \"Bei der Darstellung der Pivot-Tabelle ist ein Fehler aufgetreten.\"\n computeError: \"Bei der Berechnung der Pivot-Tabelle ist ein Fehler aufgetreten.\"\n uiRenderError: \"Bei der Darstellung Oberfläche der Pivot-Tabelle ist ein Fehler aufgetreten.\"\n selectAll: \"Alles auswählen\"\n selectNone: \"Nichts auswählen\"\n tooMany: \"(zu viele für Liste)\"\n filterResults: \"Ergebnisse filtern\"\n totals: \"Gesamt\"\n vs: \"gegen\"\n by: \"pro\"\n\n aggregators: \n \"Anzahl\": tpl.count(frFmtInt)\n \"Anzahl eindeutiger Werte\": tpl.countUnique(frFmtInt)\n \"Liste eindeutiger Werte\": tpl.listUnique(\", \")\n \"Summe\": tpl.sum(frFmt)\n \"Ganzzahlige Summe\":\t\t\ttpl.sum(frFmtInt)\n \"Durchschnitt\": tpl.average(frFmt)\n \"Minimum\": tpl.min(frFmt)\n \"Maximum\": tpl.max(frFmt)\n \"Summe über Summe\": tpl.sumOverSum(frFmt)\n \"80% Obergrenze\": tpl.sumOverSumBound80(true, frFmt)\n \"80% Untergrenze\": \t\ttpl.sumOverSumBound80(false, frFmt)\n \"Summe als Anteil von Gesamt\": tpl.fractionOf(tpl.sum(), \"total\", frFmtPct)\n \"Summe als Anteil von Zeile\": tpl.fractionOf(tpl.sum(), \"row\", frFmtPct)\n \"Summe als Anteil von Spalte\": tpl.fractionOf(tpl.sum(), \"col\", frFmtPct)\n \"Anzahl als Anteil von Gesamt\": tpl.fractionOf(tpl.count(), \"total\", frFmtPct)\n \"Anzahl als Anteil von Zeile\": tpl.fractionOf(tpl.count(), \"row\", frFmtPct)\n \"Anzahl als Anteil von Spalte\": tpl.fractionOf(tpl.count(), \"col\", frFmtPct)\n\n renderers:\n \"Tabelle\": $.pivotUtilities.renderers[\"Table\"]\n \"Tabelle mit Balkendiagramm\": $.pivotUtilities.renderers[\"Table Barchart\"]\n \"Heatmap\": $.pivotUtilities.renderers[\"Heatmap\"]\n \"Heatmap pro Zeile\": $.pivotUtilities.renderers[\"Row Heatmap\"]\n \"Heatmap pro Spalte\": $.pivotUtilities.renderers[\"Col Heatmap\"]\n","(function(){var e;(e=function(e){return\"object\"==typeof exports&&\"object\"==typeof module?e(require(\"jquery\")):\"function\"==typeof define&&define.amd?define([\"jquery\"],e):e(jQuery)})(function(e){var t,i,r,l,a;return l=e.pivotUtilities.numberFormat,a=e.pivotUtilities.aggregatorTemplates,t=l({thousandsSep:\" \",decimalSep:\",\"}),i=l({digitsAfterDecimal:0,thousandsSep:\" \",decimalSep:\",\"}),r=l({digitsAfterDecimal:1,scaler:100,suffix:\"%\",thousandsSep:\" \",decimalSep:\",\"}),e.pivotUtilities.locales.de={localeStrings:{renderError:\"Bei der Darstellung der Pivot-Tabelle ist ein Fehler aufgetreten.\",computeError:\"Bei der Berechnung der Pivot-Tabelle ist ein Fehler aufgetreten.\",uiRenderError:\"Bei der Darstellung Oberfläche der Pivot-Tabelle ist ein Fehler aufgetreten.\",selectAll:\"Alles auswählen\",selectNone:\"Nichts auswählen\",tooMany:\"(zu viele für Liste)\",filterResults:\"Ergebnisse filtern\",totals:\"Gesamt\",vs:\"gegen\",by:\"pro\"},aggregators:{Anzahl:a.count(i),\"Anzahl eindeutiger Werte\":a.countUnique(i),\"Liste eindeutiger Werte\":a.listUnique(\", \"),Summe:a.sum(t),\"Ganzzahlige Summe\":a.sum(i),Durchschnitt:a.average(t),Minimum:a.min(t),Maximum:a.max(t),\"Summe über Summe\":a.sumOverSum(t),\"80% Obergrenze\":a.sumOverSumBound80(!0,t),\"80% Untergrenze\":a.sumOverSumBound80(!1,t),\"Summe als Anteil von Gesamt\":a.fractionOf(a.sum(),\"total\",r),\"Summe als Anteil von Zeile\":a.fractionOf(a.sum(),\"row\",r),\"Summe als Anteil von Spalte\":a.fractionOf(a.sum(),\"col\",r),\"Anzahl als Anteil von Gesamt\":a.fractionOf(a.count(),\"total\",r),\"Anzahl als Anteil von Zeile\":a.fractionOf(a.count(),\"row\",r),\"Anzahl als Anteil von Spalte\":a.fractionOf(a.count(),\"col\",r)},renderers:{Tabelle:e.pivotUtilities.renderers.Table,\"Tabelle mit Balkendiagramm\":e.pivotUtilities.renderers[\"Table Barchart\"],Heatmap:e.pivotUtilities.renderers.Heatmap,\"Heatmap pro Zeile\":e.pivotUtilities.renderers[\"Row Heatmap\"],\"Heatmap pro Spalte\":e.pivotUtilities.renderers[\"Col Heatmap\"]}}})}).call(this);\n//# sourceMappingURL=pivot.de.min.js.map"],"sourceRoot":"/source/"}
--------------------------------------------------------------------------------
/public/dist/pivot.es.js:
--------------------------------------------------------------------------------
1 | (function() {
2 | var callWithJQuery;
3 |
4 | callWithJQuery = function(pivotModule) {
5 | if (typeof exports === "object" && typeof module === "object") {
6 | return pivotModule(require("jquery"));
7 | } else if (typeof define === "function" && define.amd) {
8 | return define(["jquery"], pivotModule);
9 | } else {
10 | return pivotModule(jQuery);
11 | }
12 | };
13 |
14 | callWithJQuery(function($) {
15 | var frFmt, frFmtInt, frFmtPct, nf, tpl;
16 | nf = $.pivotUtilities.numberFormat;
17 | tpl = $.pivotUtilities.aggregatorTemplates;
18 | frFmt = nf({
19 | thousandsSep: " ",
20 | decimalSep: ","
21 | });
22 | frFmtInt = nf({
23 | digitsAfterDecimal: 0,
24 | thousandsSep: " ",
25 | decimalSep: ","
26 | });
27 | frFmtPct = nf({
28 | digitsAfterDecimal: 1,
29 | scaler: 100,
30 | suffix: "%",
31 | thousandsSep: " ",
32 | decimalSep: ","
33 | });
34 | return $.pivotUtilities.locales.es = {
35 | localeStrings: {
36 | renderError: "Ocurrió un error durante la interpretación de la tabla dinámica.",
37 | computeError: "Ocurrió un error durante el cálculo de la tabla dinámica.",
38 | uiRenderError: "Ocurrió un error durante el dibujado de la tabla dinámica.",
39 | selectAll: "Seleccionar todo",
40 | selectNone: "Deseleccionar todo",
41 | tooMany: "(demasiados valores)",
42 | filterResults: "Filtrar resultados",
43 | totals: "Totales",
44 | vs: "vs",
45 | by: "por"
46 | },
47 | aggregators: {
48 | "Cuenta": tpl.count(frFmtInt),
49 | "Cuenta de valores únicos": tpl.countUnique(frFmtInt),
50 | "Lista de valores únicos": tpl.listUnique(", "),
51 | "Suma": tpl.sum(frFmt),
52 | "Suma de enteros": tpl.sum(frFmtInt),
53 | "Promedio": tpl.average(frFmt),
54 | "Mínimo": tpl.min(frFmt),
55 | "Máximo": tpl.max(frFmt),
56 | "Suma de sumas": tpl.sumOverSum(frFmt),
57 | "Cota 80% superior": tpl.sumOverSumBound80(true, frFmt),
58 | "Cota 80% inferior": tpl.sumOverSumBound80(false, frFmt),
59 | "Proporción del total (suma)": tpl.fractionOf(tpl.sum(), "total", frFmtPct),
60 | "Proporción de la fila (suma)": tpl.fractionOf(tpl.sum(), "row", frFmtPct),
61 | "Proporción de la columna (suma)": tpl.fractionOf(tpl.sum(), "col", frFmtPct),
62 | "Proporción del total (cuenta)": tpl.fractionOf(tpl.count(), "total", frFmtPct),
63 | "Proporción de la fila (cuenta)": tpl.fractionOf(tpl.count(), "row", frFmtPct),
64 | "Proporción de la columna (cuenta)": tpl.fractionOf(tpl.count(), "col", frFmtPct)
65 | },
66 | renderers: {
67 | "Tabla": $.pivotUtilities.renderers["Table"],
68 | "Tabla con barras": $.pivotUtilities.renderers["Table Barchart"],
69 | "Heatmap": $.pivotUtilities.renderers["Heatmap"],
70 | "Heatmap por filas": $.pivotUtilities.renderers["Row Heatmap"],
71 | "Heatmap por columnas": $.pivotUtilities.renderers["Col Heatmap"]
72 | }
73 | };
74 | });
75 |
76 | }).call(this);
77 |
78 | //# sourceMappingURL=pivot.es.js.map
--------------------------------------------------------------------------------
/public/dist/pivot.es.js.map:
--------------------------------------------------------------------------------
1 | {"version":3,"sources":["pivot.es.coffee"],"names":[],"mappings":"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","file":"pivot.es.js","sourceRoot":"/source/","sourcesContent":["callWithJQuery = (pivotModule) ->\n if typeof exports is \"object\" and typeof module is \"object\" # CommonJS\n pivotModule require(\"jquery\")\n else if typeof define is \"function\" and define.amd # AMD\n define [\"jquery\"], pivotModule\n # Plain browser env\n else\n pivotModule jQuery\n \ncallWithJQuery ($) ->\n nf = $.pivotUtilities.numberFormat\n tpl = $.pivotUtilities.aggregatorTemplates\n\n frFmt = nf(thousandsSep: \" \", decimalSep: \",\")\n frFmtInt = nf(digitsAfterDecimal: 0, thousandsSep: \" \", decimalSep: \",\")\n frFmtPct = nf(digitsAfterDecimal: 1, scaler: 100, suffix: \"%\", thousandsSep: \" \", decimalSep: \",\")\n\n $.pivotUtilities.locales.es = \n\n localeStrings:\n renderError: \"Ocurrió un error durante la interpretación de la tabla dinámica.\"\n computeError: \"Ocurrió un error durante el cálculo de la tabla dinámica.\"\n uiRenderError: \"Ocurrió un error durante el dibujado de la tabla dinámica.\"\n selectAll: \"Seleccionar todo\"\n selectNone: \"Deseleccionar todo\"\n tooMany: \"(demasiados valores)\"\n filterResults: \"Filtrar resultados\"\n totals: \"Totales\"\n vs: \"vs\"\n by: \"por\"\n aggregators: \n \"Cuenta\": tpl.count(frFmtInt)\n \"Cuenta de valores únicos\": tpl.countUnique(frFmtInt)\n \"Lista de valores únicos\": tpl.listUnique(\", \")\n \"Suma\": tpl.sum(frFmt)\n \"Suma de enteros\": tpl.sum(frFmtInt)\n \"Promedio\": tpl.average(frFmt)\n \"Mínimo\": tpl.min(frFmt)\n \"Máximo\": tpl.max(frFmt)\n \"Suma de sumas\": tpl.sumOverSum(frFmt)\n \"Cota 80% superior\": tpl.sumOverSumBound80(true, frFmt)\n \"Cota 80% inferior\": tpl.sumOverSumBound80(false, frFmt)\n \"Proporción del total (suma)\": tpl.fractionOf(tpl.sum(), \"total\", frFmtPct)\n \"Proporción de la fila (suma)\": tpl.fractionOf(tpl.sum(), \"row\", frFmtPct)\n \"Proporción de la columna (suma)\": tpl.fractionOf(tpl.sum(), \"col\", frFmtPct)\n \"Proporción del total (cuenta)\": tpl.fractionOf(tpl.count(), \"total\", frFmtPct)\n \"Proporción de la fila (cuenta)\": tpl.fractionOf(tpl.count(), \"row\", frFmtPct)\n \"Proporción de la columna (cuenta)\": tpl.fractionOf(tpl.count(), \"col\", frFmtPct)\n\n renderers:\n \"Tabla\": $.pivotUtilities.renderers[\"Table\"]\n \"Tabla con barras\": $.pivotUtilities.renderers[\"Table Barchart\"]\n \"Heatmap\": $.pivotUtilities.renderers[\"Heatmap\"]\n \"Heatmap por filas\": $.pivotUtilities.renderers[\"Row Heatmap\"]\n \"Heatmap por columnas\": $.pivotUtilities.renderers[\"Col Heatmap\"]\n\n\n"]}
--------------------------------------------------------------------------------
/public/dist/pivot.es.min.js:
--------------------------------------------------------------------------------
1 | (function(){var e;(e=function(e){return"object"==typeof exports&&"object"==typeof module?e(require("jquery")):"function"==typeof define&&define.amd?define(["jquery"],e):e(jQuery)})(function(e){var r,a,t,o,i;return o=e.pivotUtilities.numberFormat,i=e.pivotUtilities.aggregatorTemplates,r=o({thousandsSep:" ",decimalSep:","}),a=o({digitsAfterDecimal:0,thousandsSep:" ",decimalSep:","}),t=o({digitsAfterDecimal:1,scaler:100,suffix:"%",thousandsSep:" ",decimalSep:","}),e.pivotUtilities.locales.es={localeStrings:{renderError:"Ocurrió un error durante la interpretación de la tabla dinámica.",computeError:"Ocurrió un error durante el cálculo de la tabla dinámica.",uiRenderError:"Ocurrió un error durante el dibujado de la tabla dinámica.",selectAll:"Seleccionar todo",selectNone:"Deseleccionar todo",tooMany:"(demasiados valores)",filterResults:"Filtrar resultados",totals:"Totales",vs:"vs",by:"por"},aggregators:{Cuenta:i.count(a),"Cuenta de valores únicos":i.countUnique(a),"Lista de valores únicos":i.listUnique(", "),Suma:i.sum(r),"Suma de enteros":i.sum(a),Promedio:i.average(r),"Mínimo":i.min(r),"Máximo":i.max(r),"Suma de sumas":i.sumOverSum(r),"Cota 80% superior":i.sumOverSumBound80(!0,r),"Cota 80% inferior":i.sumOverSumBound80(!1,r),"Proporción del total (suma)":i.fractionOf(i.sum(),"total",t),"Proporción de la fila (suma)":i.fractionOf(i.sum(),"row",t),"Proporción de la columna (suma)":i.fractionOf(i.sum(),"col",t),"Proporción del total (cuenta)":i.fractionOf(i.count(),"total",t),"Proporción de la fila (cuenta)":i.fractionOf(i.count(),"row",t),"Proporción de la columna (cuenta)":i.fractionOf(i.count(),"col",t)},renderers:{Tabla:e.pivotUtilities.renderers.Table,"Tabla con barras":e.pivotUtilities.renderers["Table Barchart"],Heatmap:e.pivotUtilities.renderers.Heatmap,"Heatmap por filas":e.pivotUtilities.renderers["Row Heatmap"],"Heatmap por columnas":e.pivotUtilities.renderers["Col Heatmap"]}}})}).call(this);
2 | //# sourceMappingURL=pivot.es.min.js.map
--------------------------------------------------------------------------------
/public/dist/pivot.es.min.js.map:
--------------------------------------------------------------------------------
1 | {"version":3,"sources":["/source/pivot.es.coffee","pivot.es.min.js"],"names":["callWithJQuery","pivotModule","exports","module","require","define","amd","jQuery","$","frFmt","frFmtInt","frFmtPct","nf","tpl","pivotUtilities","numberFormat","aggregatorTemplates","thousandsSep","decimalSep","digitsAfterDecimal","scaler","suffix","locales","es","localeStrings","renderError","computeError","uiRenderError","selectAll","selectNone","tooMany","filterResults","totals","vs","by","aggregators","Cuenta","count","Cuenta de valores únicos","countUnique","Lista de valores únicos","listUnique","Suma","sum","Suma de enteros","Promedio","average","Mínimo","min","Máximo","max","Suma de sumas","sumOverSum","Cota 80% superior","sumOverSumBound80","Cota 80% inferior","Proporción del total (suma)","fractionOf","Proporción de la fila (suma)","Proporción de la columna (suma)","Proporción del total (cuenta)","Proporción de la fila (cuenta)","Proporción de la columna (cuenta)","renderers","Tabla","Tabla con barras","Heatmap","Heatmap por filas","Heatmap por columnas","call","this"],"mappings":"CAAA,WAAA,GAAAA,IAAAA,EAAiB,SAACC,GACd,MAAqB,gBAAlBC,UAAgD,gBAAjBC,QAC9BF,EAAYG,QAAQ,WACC,kBAAjBC,SAAgCA,OAAOC,IAC3CD,QAAQ,UAAWJ,GAGnBA,EAAYM,UAEL,SAACC,GACZ,GAAAC,GAAAC,EAAAC,EAAAC,EAAAC,CCuBA,ODvBAD,GAAKJ,EAAEM,eAAeC,aACtBF,EAAML,EAAEM,eAAeE,oBAEvBP,EAAWG,GAAGK,aAAc,IAAKC,WAAY,MAC7CR,EAAWE,GAAGO,mBAAoB,EAAGF,aAAc,IAAKC,WAAY,MACpEP,EAAWC,GAAGO,mBAAoB,EAAGC,OAAQ,IAAKC,OAAQ,IAAKJ,aAAc,IAAKC,WAAY,MAE9FV,EAAEM,eAAeQ,QAAQC,IAErBC,eACIC,YAAa,mEACbC,aAAc,4DACdC,cAAe,6DACfC,UAAW,mBACXC,WAAY,qBACZC,QAAS,uBACTC,cAAe,qBACfC,OAAQ,UACRC,GAAI,KACJC,GAAI,OACRC,aACIC,OAAsCvB,EAAIwB,MAAM3B,GAChD4B,2BAAqCzB,EAAI0B,YAAY7B,GACrD8B,0BAAqC3B,EAAI4B,WAAW,MACpDC,KAAqC7B,EAAI8B,IAAIlC,GAC7CmC,kBAAqC/B,EAAI8B,IAAIjC,GAC7CmC,SAAuChC,EAAIiC,QAAQrC,GACnDsC,SAAgDlC,EAAImC,IAAIvC,GACxDwC,SAAgDpC,EAAIqC,IAAIzC,GACxD0C,gBAAoCtC,EAAIuC,WAAW3C,GACnD4C,oBAA4BxC,EAAIyC,mBAAkB,EAAM7C,GACxD8C,oBAA4B1C,EAAIyC,mBAAkB,EAAO7C,GACzD+C,8BAAoC3C,EAAI4C,WAAW5C,EAAI8B,MAAS,QAAShC,GACzE+C,+BAAmC7C,EAAI4C,WAAW5C,EAAI8B,MAAS,MAAShC,GACxEgD,kCAAoC9C,EAAI4C,WAAW5C,EAAI8B,MAAS,MAAShC,GACzEiD,gCAAqC/C,EAAI4C,WAAW5C,EAAIwB,QAAS,QAAS1B,GAC1EkD,iCAAoChD,EAAI4C,WAAW5C,EAAIwB,QAAS,MAAS1B,GACzEmD,oCAAqCjD,EAAI4C,WAAW5C,EAAIwB,QAAS,MAAS1B,IAE9EoD,WACIC,MAAmCxD,EAAEM,eAAeiD,UAAU,MAC9DE,mBAAkCzD,EAAEM,eAAeiD,UAAU,kBAC7DG,QAA0B1D,EAAEM,eAAeiD,UAAU,QACrDI,oBAA0B3D,EAAEM,eAAeiD,UAAU,eACrDK,uBAA2B5D,EAAEM,eAAeiD,UAAU,qBCqB/DM,KAAKC","file":"pivot.es.min.js","sourcesContent":["callWithJQuery = (pivotModule) ->\n if typeof exports is \"object\" and typeof module is \"object\" # CommonJS\n pivotModule require(\"jquery\")\n else if typeof define is \"function\" and define.amd # AMD\n define [\"jquery\"], pivotModule\n # Plain browser env\n else\n pivotModule jQuery\n \ncallWithJQuery ($) ->\n nf = $.pivotUtilities.numberFormat\n tpl = $.pivotUtilities.aggregatorTemplates\n\n frFmt = nf(thousandsSep: \" \", decimalSep: \",\")\n frFmtInt = nf(digitsAfterDecimal: 0, thousandsSep: \" \", decimalSep: \",\")\n frFmtPct = nf(digitsAfterDecimal: 1, scaler: 100, suffix: \"%\", thousandsSep: \" \", decimalSep: \",\")\n\n $.pivotUtilities.locales.es = \n\n localeStrings:\n renderError: \"Ocurrió un error durante la interpretación de la tabla dinámica.\"\n computeError: \"Ocurrió un error durante el cálculo de la tabla dinámica.\"\n uiRenderError: \"Ocurrió un error durante el dibujado de la tabla dinámica.\"\n selectAll: \"Seleccionar todo\"\n selectNone: \"Deseleccionar todo\"\n tooMany: \"(demasiados valores)\"\n filterResults: \"Filtrar resultados\"\n totals: \"Totales\"\n vs: \"vs\"\n by: \"por\"\n aggregators: \n \"Cuenta\": tpl.count(frFmtInt)\n \"Cuenta de valores únicos\": tpl.countUnique(frFmtInt)\n \"Lista de valores únicos\": tpl.listUnique(\", \")\n \"Suma\": tpl.sum(frFmt)\n \"Suma de enteros\": tpl.sum(frFmtInt)\n \"Promedio\": tpl.average(frFmt)\n \"Mínimo\": tpl.min(frFmt)\n \"Máximo\": tpl.max(frFmt)\n \"Suma de sumas\": tpl.sumOverSum(frFmt)\n \"Cota 80% superior\": tpl.sumOverSumBound80(true, frFmt)\n \"Cota 80% inferior\": tpl.sumOverSumBound80(false, frFmt)\n \"Proporción del total (suma)\": tpl.fractionOf(tpl.sum(), \"total\", frFmtPct)\n \"Proporción de la fila (suma)\": tpl.fractionOf(tpl.sum(), \"row\", frFmtPct)\n \"Proporción de la columna (suma)\": tpl.fractionOf(tpl.sum(), \"col\", frFmtPct)\n \"Proporción del total (cuenta)\": tpl.fractionOf(tpl.count(), \"total\", frFmtPct)\n \"Proporción de la fila (cuenta)\": tpl.fractionOf(tpl.count(), \"row\", frFmtPct)\n \"Proporción de la columna (cuenta)\": tpl.fractionOf(tpl.count(), \"col\", frFmtPct)\n\n renderers:\n \"Tabla\": $.pivotUtilities.renderers[\"Table\"]\n \"Tabla con barras\": $.pivotUtilities.renderers[\"Table Barchart\"]\n \"Heatmap\": $.pivotUtilities.renderers[\"Heatmap\"]\n \"Heatmap por filas\": $.pivotUtilities.renderers[\"Row Heatmap\"]\n \"Heatmap por columnas\": $.pivotUtilities.renderers[\"Col Heatmap\"]\n\n\n","(function(){var e;(e=function(e){return\"object\"==typeof exports&&\"object\"==typeof module?e(require(\"jquery\")):\"function\"==typeof define&&define.amd?define([\"jquery\"],e):e(jQuery)})(function(e){var r,a,t,o,i;return o=e.pivotUtilities.numberFormat,i=e.pivotUtilities.aggregatorTemplates,r=o({thousandsSep:\" \",decimalSep:\",\"}),a=o({digitsAfterDecimal:0,thousandsSep:\" \",decimalSep:\",\"}),t=o({digitsAfterDecimal:1,scaler:100,suffix:\"%\",thousandsSep:\" \",decimalSep:\",\"}),e.pivotUtilities.locales.es={localeStrings:{renderError:\"Ocurrió un error durante la interpretación de la tabla dinámica.\",computeError:\"Ocurrió un error durante el cálculo de la tabla dinámica.\",uiRenderError:\"Ocurrió un error durante el dibujado de la tabla dinámica.\",selectAll:\"Seleccionar todo\",selectNone:\"Deseleccionar todo\",tooMany:\"(demasiados valores)\",filterResults:\"Filtrar resultados\",totals:\"Totales\",vs:\"vs\",by:\"por\"},aggregators:{Cuenta:i.count(a),\"Cuenta de valores únicos\":i.countUnique(a),\"Lista de valores únicos\":i.listUnique(\", \"),Suma:i.sum(r),\"Suma de enteros\":i.sum(a),Promedio:i.average(r),\"Mínimo\":i.min(r),\"Máximo\":i.max(r),\"Suma de sumas\":i.sumOverSum(r),\"Cota 80% superior\":i.sumOverSumBound80(!0,r),\"Cota 80% inferior\":i.sumOverSumBound80(!1,r),\"Proporción del total (suma)\":i.fractionOf(i.sum(),\"total\",t),\"Proporción de la fila (suma)\":i.fractionOf(i.sum(),\"row\",t),\"Proporción de la columna (suma)\":i.fractionOf(i.sum(),\"col\",t),\"Proporción del total (cuenta)\":i.fractionOf(i.count(),\"total\",t),\"Proporción de la fila (cuenta)\":i.fractionOf(i.count(),\"row\",t),\"Proporción de la columna (cuenta)\":i.fractionOf(i.count(),\"col\",t)},renderers:{Tabla:e.pivotUtilities.renderers.Table,\"Tabla con barras\":e.pivotUtilities.renderers[\"Table Barchart\"],Heatmap:e.pivotUtilities.renderers.Heatmap,\"Heatmap por filas\":e.pivotUtilities.renderers[\"Row Heatmap\"],\"Heatmap por columnas\":e.pivotUtilities.renderers[\"Col Heatmap\"]}}})}).call(this);\n//# sourceMappingURL=pivot.es.min.js.map"],"sourceRoot":"/source/"}
--------------------------------------------------------------------------------
/public/dist/pivot.fr.js:
--------------------------------------------------------------------------------
1 | (function() {
2 | var callWithJQuery;
3 |
4 | callWithJQuery = function(pivotModule) {
5 | if (typeof exports === "object" && typeof module === "object") {
6 | return pivotModule(require("jquery"));
7 | } else if (typeof define === "function" && define.amd) {
8 | return define(["jquery"], pivotModule);
9 | } else {
10 | return pivotModule(jQuery);
11 | }
12 | };
13 |
14 | callWithJQuery(function($) {
15 | var frFmt, frFmtInt, frFmtPct, nf, tpl;
16 | nf = $.pivotUtilities.numberFormat;
17 | tpl = $.pivotUtilities.aggregatorTemplates;
18 | frFmt = nf({
19 | thousandsSep: " ",
20 | decimalSep: ","
21 | });
22 | frFmtInt = nf({
23 | digitsAfterDecimal: 0,
24 | thousandsSep: " ",
25 | decimalSep: ","
26 | });
27 | frFmtPct = nf({
28 | digitsAfterDecimal: 1,
29 | scaler: 100,
30 | suffix: "%",
31 | thousandsSep: " ",
32 | decimalSep: ","
33 | });
34 | return $.pivotUtilities.locales.fr = {
35 | localeStrings: {
36 | renderError: "Une erreur est survenue en dessinant le tableau croisé.",
37 | computeError: "Une erreur est survenue en calculant le tableau croisé.",
38 | uiRenderError: "Une erreur est survenue en dessinant l'interface du tableau croisé dynamique.",
39 | selectAll: "Sélectionner tout",
40 | selectNone: "Sélectionner rien",
41 | tooMany: "(trop de valeurs à afficher)",
42 | filterResults: "Filtrer les valeurs",
43 | totals: "Totaux",
44 | vs: "sur",
45 | by: "par",
46 | apply: "Appliquer",
47 | cancel: "Annuler"
48 | },
49 | aggregators: {
50 | "Nombre": tpl.count(frFmtInt),
51 | "Nombre de valeurs uniques": tpl.countUnique(frFmtInt),
52 | "Liste de valeurs uniques": tpl.listUnique(", "),
53 | "Somme": tpl.sum(frFmt),
54 | "Somme en entiers": tpl.sum(frFmtInt),
55 | "Moyenne": tpl.average(frFmt),
56 | "Minimum": tpl.min(frFmt),
57 | "Maximum": tpl.max(frFmt),
58 | "Premier": tpl.min(frFmt),
59 | "Dernier": tpl.max(frFmt),
60 | "Ratio de sommes": tpl.sumOverSum(frFmt),
61 | "Borne supérieure 80%": tpl.sumOverSumBound80(true, frFmt),
62 | "Borne inférieure 80%": tpl.sumOverSumBound80(false, frFmt),
63 | "Somme en proportion du totale": tpl.fractionOf(tpl.sum(), "total", frFmtPct),
64 | "Somme en proportion de la ligne": tpl.fractionOf(tpl.sum(), "row", frFmtPct),
65 | "Somme en proportion de la colonne": tpl.fractionOf(tpl.sum(), "col", frFmtPct),
66 | "Nombre en proportion du totale": tpl.fractionOf(tpl.count(), "total", frFmtPct),
67 | "Nombre en proportion de la ligne": tpl.fractionOf(tpl.count(), "row", frFmtPct),
68 | "Nombre en proportion de la colonne": tpl.fractionOf(tpl.count(), "col", frFmtPct)
69 | },
70 | renderers: {
71 | "Table": $.pivotUtilities.renderers["Table"],
72 | "Table avec barres": $.pivotUtilities.renderers["Table Barchart"],
73 | "Carte de chaleur": $.pivotUtilities.renderers["Heatmap"],
74 | "Carte de chaleur par ligne": $.pivotUtilities.renderers["Row Heatmap"],
75 | "Carte de chaleur par colonne": $.pivotUtilities.renderers["Col Heatmap"]
76 | }
77 | };
78 | });
79 |
80 | }).call(this);
81 |
82 | //# sourceMappingURL=pivot.fr.js.map
--------------------------------------------------------------------------------
/public/dist/pivot.fr.js.map:
--------------------------------------------------------------------------------
1 | {"version":3,"sources":["pivot.fr.coffee"],"names":[],"mappings":"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","file":"pivot.fr.js","sourceRoot":"/source/","sourcesContent":["callWithJQuery = (pivotModule) ->\n if typeof exports is \"object\" and typeof module is \"object\" # CommonJS\n pivotModule require(\"jquery\")\n else if typeof define is \"function\" and define.amd # AMD\n define [\"jquery\"], pivotModule\n # Plain browser env\n else\n pivotModule jQuery\n\ncallWithJQuery ($) ->\n nf = $.pivotUtilities.numberFormat\n tpl = $.pivotUtilities.aggregatorTemplates\n\n frFmt = nf(thousandsSep: \" \", decimalSep: \",\")\n frFmtInt = nf(digitsAfterDecimal: 0, thousandsSep: \" \", decimalSep: \",\")\n frFmtPct = nf(digitsAfterDecimal: 1, scaler: 100, suffix: \"%\", thousandsSep: \" \", decimalSep: \",\")\n\n $.pivotUtilities.locales.fr =\n localeStrings:\n renderError: \"Une erreur est survenue en dessinant le tableau croisé.\"\n computeError: \"Une erreur est survenue en calculant le tableau croisé.\"\n uiRenderError: \"Une erreur est survenue en dessinant l'interface du tableau croisé dynamique.\"\n selectAll: \"Sélectionner tout\"\n selectNone: \"Sélectionner rien\"\n tooMany: \"(trop de valeurs à afficher)\"\n filterResults: \"Filtrer les valeurs\"\n totals: \"Totaux\"\n vs: \"sur\"\n by: \"par\"\n apply: \"Appliquer\"\n cancel: \"Annuler\"\n\n aggregators:\n \"Nombre\": tpl.count(frFmtInt)\n \"Nombre de valeurs uniques\": tpl.countUnique(frFmtInt)\n \"Liste de valeurs uniques\": tpl.listUnique(\", \")\n \"Somme\": tpl.sum(frFmt)\n \"Somme en entiers\": tpl.sum(frFmtInt)\n \"Moyenne\": tpl.average(frFmt)\n \"Minimum\": tpl.min(frFmt)\n \"Maximum\": tpl.max(frFmt)\n \"Premier\": tpl.min(frFmt)\n \"Dernier\": tpl.max(frFmt)\n \"Ratio de sommes\": tpl.sumOverSum(frFmt)\n \"Borne supérieure 80%\": tpl.sumOverSumBound80(true, frFmt)\n \"Borne inférieure 80%\": tpl.sumOverSumBound80(false, frFmt)\n \"Somme en proportion du totale\": tpl.fractionOf(tpl.sum(), \"total\", frFmtPct)\n \"Somme en proportion de la ligne\": tpl.fractionOf(tpl.sum(), \"row\", frFmtPct)\n \"Somme en proportion de la colonne\": tpl.fractionOf(tpl.sum(), \"col\", frFmtPct)\n \"Nombre en proportion du totale\": tpl.fractionOf(tpl.count(), \"total\", frFmtPct)\n \"Nombre en proportion de la ligne\": tpl.fractionOf(tpl.count(), \"row\", frFmtPct)\n \"Nombre en proportion de la colonne\": tpl.fractionOf(tpl.count(), \"col\", frFmtPct)\n\n renderers:\n \"Table\": $.pivotUtilities.renderers[\"Table\"]\n \"Table avec barres\": $.pivotUtilities.renderers[\"Table Barchart\"]\n \"Carte de chaleur\": $.pivotUtilities.renderers[\"Heatmap\"]\n \"Carte de chaleur par ligne\": $.pivotUtilities.renderers[\"Row Heatmap\"]\n \"Carte de chaleur par colonne\": $.pivotUtilities.renderers[\"Col Heatmap\"]\n\n\n"]}
--------------------------------------------------------------------------------
/public/dist/pivot.fr.min.js:
--------------------------------------------------------------------------------
1 | (function(){var e;(e=function(e){return"object"==typeof exports&&"object"==typeof module?e(require("jquery")):"function"==typeof define&&define.amd?define(["jquery"],e):e(jQuery)})(function(e){var r,t,o,n,i;return n=e.pivotUtilities.numberFormat,i=e.pivotUtilities.aggregatorTemplates,r=n({thousandsSep:" ",decimalSep:","}),t=n({digitsAfterDecimal:0,thousandsSep:" ",decimalSep:","}),o=n({digitsAfterDecimal:1,scaler:100,suffix:"%",thousandsSep:" ",decimalSep:","}),e.pivotUtilities.locales.fr={localeStrings:{renderError:"Une erreur est survenue en dessinant le tableau croisé.",computeError:"Une erreur est survenue en calculant le tableau croisé.",uiRenderError:"Une erreur est survenue en dessinant l'interface du tableau croisé dynamique.",selectAll:"Sélectionner tout",selectNone:"Sélectionner rien",tooMany:"(trop de valeurs à afficher)",filterResults:"Filtrer les valeurs",totals:"Totaux",vs:"sur",by:"par",apply:"Appliquer",cancel:"Annuler"},aggregators:{Nombre:i.count(t),"Nombre de valeurs uniques":i.countUnique(t),"Liste de valeurs uniques":i.listUnique(", "),Somme:i.sum(r),"Somme en entiers":i.sum(t),Moyenne:i.average(r),Minimum:i.min(r),Maximum:i.max(r),Premier:i.min(r),Dernier:i.max(r),"Ratio de sommes":i.sumOverSum(r),"Borne supérieure 80%":i.sumOverSumBound80(!0,r),"Borne inférieure 80%":i.sumOverSumBound80(!1,r),"Somme en proportion du totale":i.fractionOf(i.sum(),"total",o),"Somme en proportion de la ligne":i.fractionOf(i.sum(),"row",o),"Somme en proportion de la colonne":i.fractionOf(i.sum(),"col",o),"Nombre en proportion du totale":i.fractionOf(i.count(),"total",o),"Nombre en proportion de la ligne":i.fractionOf(i.count(),"row",o),"Nombre en proportion de la colonne":i.fractionOf(i.count(),"col",o)},renderers:{Table:e.pivotUtilities.renderers.Table,"Table avec barres":e.pivotUtilities.renderers["Table Barchart"],"Carte de chaleur":e.pivotUtilities.renderers.Heatmap,"Carte de chaleur par ligne":e.pivotUtilities.renderers["Row Heatmap"],"Carte de chaleur par colonne":e.pivotUtilities.renderers["Col Heatmap"]}}})}).call(this);
2 | //# sourceMappingURL=pivot.fr.min.js.map
--------------------------------------------------------------------------------
/public/dist/pivot.it.js:
--------------------------------------------------------------------------------
1 | (function() {
2 | var callWithJQuery;
3 |
4 | callWithJQuery = function(pivotModule) {
5 | if (typeof exports === "object" && typeof module === "object") {
6 | return pivotModule(require("jquery"));
7 | } else if (typeof define === "function" && define.amd) {
8 | return define(["jquery"], pivotModule);
9 | } else {
10 | return pivotModule(jQuery);
11 | }
12 | };
13 |
14 | callWithJQuery(function($) {
15 | var frFmt, frFmtInt, frFmtPct, nf, tpl;
16 | nf = $.pivotUtilities.numberFormat;
17 | tpl = $.pivotUtilities.aggregatorTemplates;
18 | frFmt = nf({
19 | thousandsSep: " ",
20 | decimalSep: ","
21 | });
22 | frFmtInt = nf({
23 | digitsAfterDecimal: 0,
24 | thousandsSep: " ",
25 | decimalSep: ","
26 | });
27 | frFmtPct = nf({
28 | digitsAfterDecimal: 1,
29 | scaler: 100,
30 | suffix: "%",
31 | thousandsSep: " ",
32 | decimalSep: ","
33 | });
34 | return $.pivotUtilities.locales.it = {
35 | localeStrings: {
36 | renderError: "Si è verificato un errore durante la creazione della tabella.",
37 | computeError: "Si è verificato un errore di calcolo nella tabella.",
38 | uiRenderError: "Si è verificato un errore durante il disegno di interfaccia della tabella pivot.",
39 | selectAll: "Seleziona tutto",
40 | selectNone: "Deseleziona tutto",
41 | tooMany: "(troppi valori da visualizzare)",
42 | filterResults: "Filtra i valori",
43 | totals: "Totali",
44 | vs: "su",
45 | by: "da"
46 | },
47 | aggregators: {
48 | "Numero": tpl.count(frFmtInt),
49 | "Numero di valori unici": tpl.countUnique(frFmtInt),
50 | "Elenco di valori unici": tpl.listUnique(", "),
51 | "Somma": tpl.sum(frFmt),
52 | "Somma intera": tpl.sum(frFmtInt),
53 | "Media": tpl.average(frFmt),
54 | "Minimo": tpl.min(frFmt),
55 | "Massimo": tpl.max(frFmt),
56 | "Rapporto": tpl.sumOverSum(frFmt),
57 | "Limite superiore 80%": tpl.sumOverSumBound80(true, frFmt),
58 | "limite inferiore 80%": tpl.sumOverSumBound80(false, frFmt),
59 | "Somma proporzionale al totale": tpl.fractionOf(tpl.sum(), "total", frFmtPct),
60 | "Somma proporzionale alla riga": tpl.fractionOf(tpl.sum(), "row", frFmtPct),
61 | "Somma proporzionale alla colonna": tpl.fractionOf(tpl.sum(), "col", frFmtPct),
62 | "Numero proporzionale al totale": tpl.fractionOf(tpl.count(), "total", frFmtPct),
63 | "Numero proporzionale alla riga": tpl.fractionOf(tpl.count(), "row", frFmtPct),
64 | "Numero proporzionale alla colonna": tpl.fractionOf(tpl.count(), "col", frFmtPct)
65 | },
66 | renderers: {
67 | "Tabella": $.pivotUtilities.renderers["Table"],
68 | "Tabella con grafico": $.pivotUtilities.renderers["Table Barchart"],
69 | "Mappa di calore": $.pivotUtilities.renderers["Heatmap"],
70 | "Mappa di calore per righe": $.pivotUtilities.renderers["Row Heatmap"],
71 | "Mappa di calore per colonne": $.pivotUtilities.renderers["Col Heatmap"]
72 | }
73 | };
74 | });
75 |
76 | }).call(this);
77 |
78 | //# sourceMappingURL=pivot.it.js.map
--------------------------------------------------------------------------------
/public/dist/pivot.it.js.map:
--------------------------------------------------------------------------------
1 | {"version":3,"sources":["pivot.it.coffee"],"names":[],"mappings":"AAAA;AAAA,MAAA,cAAA;;AAAA,EAAA,cAAA,GAAiB,SAAC,WAAD,GAAA;AACf,IAAA,IAAG,MAAA,CAAA,OAAA,KAAkB,QAAlB,IAA+B,MAAA,CAAA,MAAA,KAAiB,QAAnD;aACE,WAAA,CAAY,OAAA,CAAQ,QAAR,CAAZ,EADF;KAAA,MAEK,IAAG,MAAA,CAAA,MAAA,KAAiB,UAAjB,IAAgC,MAAM,CAAC,GAA1C;aACH,MAAA,CAAO,CAAC,QAAD,CAAP,EAAmB,WAAnB,EADG;KAAA,MAAA;aAIH,WAAA,CAAY,MAAZ,EAJG;KAHU;EAAA,CAAjB,CAAA;;AAAA,EASA,cAAA,CAAe,SAAC,CAAD,GAAA;AACb,QAAA,kCAAA;AAAA,IAAA,EAAA,GAAK,CAAC,CAAC,cAAc,CAAC,YAAtB,CAAA;AAAA,IACA,GAAA,GAAM,CAAC,CAAC,cAAc,CAAC,mBADvB,CAAA;AAAA,IAGA,KAAA,GAAW,EAAA,CAAG;AAAA,MAAA,YAAA,EAAc,GAAd;AAAA,MAAmB,UAAA,EAAY,GAA/B;KAAH,CAHX,CAAA;AAAA,IAIA,QAAA,GAAW,EAAA,CAAG;AAAA,MAAA,kBAAA,EAAoB,CAApB;AAAA,MAAuB,YAAA,EAAc,GAArC;AAAA,MAA0C,UAAA,EAAY,GAAtD;KAAH,CAJX,CAAA;AAAA,IAKA,QAAA,GAAW,EAAA,CAAG;AAAA,MAAA,kBAAA,EAAoB,CAApB;AAAA,MAAuB,MAAA,EAAQ,GAA/B;AAAA,MAAoC,MAAA,EAAQ,GAA5C;AAAA,MAAiD,YAAA,EAAc,GAA/D;AAAA,MAAoE,UAAA,EAAY,GAAhF;KAAH,CALX,CAAA;WAOA,CAAC,CAAC,cAAc,CAAC,OAAO,CAAC,EAAzB,GACE;AAAA,MAAA,aAAA,EACE;AAAA,QAAA,WAAA,EAAa,+DAAb;AAAA,QACA,YAAA,EAAc,qDADd;AAAA,QAEA,aAAA,EAAe,kFAFf;AAAA,QAGA,SAAA,EAAW,iBAHX;AAAA,QAIA,UAAA,EAAY,mBAJZ;AAAA,QAKA,OAAA,EAAS,iCALT;AAAA,QAMA,aAAA,EAAe,iBANf;AAAA,QAOA,MAAA,EAAQ,QAPR;AAAA,QAQA,EAAA,EAAI,IARJ;AAAA,QASA,EAAA,EAAI,IATJ;OADF;AAAA,MAYA,WAAA,EACE;AAAA,QAAA,QAAA,EAAsC,GAAG,CAAC,KAAJ,CAAU,QAAV,CAAtC;AAAA,QACA,wBAAA,EAAsC,GAAG,CAAC,WAAJ,CAAgB,QAAhB,CADtC;AAAA,QAEA,wBAAA,EAAsC,GAAG,CAAC,UAAJ,CAAe,IAAf,CAFtC;AAAA,QAGA,OAAA,EAAsC,GAAG,CAAC,GAAJ,CAAQ,KAAR,CAHtC;AAAA,QAIA,cAAA,EAAsC,GAAG,CAAC,GAAJ,CAAQ,QAAR,CAJtC;AAAA,QAKA,OAAA,EAAsC,GAAG,CAAC,OAAJ,CAAY,KAAZ,CALtC;AAAA,QAMA,QAAA,EAAsC,GAAG,CAAC,GAAJ,CAAQ,KAAR,CANtC;AAAA,QAOA,SAAA,EAAsC,GAAG,CAAC,GAAJ,CAAQ,KAAR,CAPtC;AAAA,QAQA,UAAA,EAAsC,GAAG,CAAC,UAAJ,CAAe,KAAf,CARtC;AAAA,QASA,sBAAA,EAAsC,GAAG,CAAC,iBAAJ,CAAsB,IAAtB,EAA4B,KAA5B,CATtC;AAAA,QAUA,sBAAA,EAAsC,GAAG,CAAC,iBAAJ,CAAsB,KAAtB,EAA6B,KAA7B,CAVtC;AAAA,QAWA,+BAAA,EAAsC,GAAG,CAAC,UAAJ,CAAe,GAAG,CAAC,GAAJ,CAAA,CAAf,EAA4B,OAA5B,EAAqC,QAArC,CAXtC;AAAA,QAYA,+BAAA,EAAsC,GAAG,CAAC,UAAJ,CAAe,GAAG,CAAC,GAAJ,CAAA,CAAf,EAA4B,KAA5B,EAAqC,QAArC,CAZtC;AAAA,QAaA,kCAAA,EAAsC,GAAG,CAAC,UAAJ,CAAe,GAAG,CAAC,GAAJ,CAAA,CAAf,EAA4B,KAA5B,EAAqC,QAArC,CAbtC;AAAA,QAcA,gCAAA,EAAsC,GAAG,CAAC,UAAJ,CAAe,GAAG,CAAC,KAAJ,CAAA,CAAf,EAA4B,OAA5B,EAAqC,QAArC,CAdtC;AAAA,QAeA,gCAAA,EAAsC,GAAG,CAAC,UAAJ,CAAe,GAAG,CAAC,KAAJ,CAAA,CAAf,EAA4B,KAA5B,EAAqC,QAArC,CAftC;AAAA,QAgBA,mCAAA,EAAsC,GAAG,CAAC,UAAJ,CAAe,GAAG,CAAC,KAAJ,CAAA,CAAf,EAA4B,KAA5B,EAAqC,QAArC,CAhBtC;OAbF;AAAA,MA+BA,SAAA,EACE;AAAA,QAAA,SAAA,EAAqC,CAAC,CAAC,cAAc,CAAC,SAAU,CAAA,OAAA,CAAhE;AAAA,QACA,qBAAA,EAAqC,CAAC,CAAC,cAAc,CAAC,SAAU,CAAA,gBAAA,CADhE;AAAA,QAEA,iBAAA,EAAqC,CAAC,CAAC,cAAc,CAAC,SAAU,CAAA,SAAA,CAFhE;AAAA,QAGA,2BAAA,EAAqC,CAAC,CAAC,cAAc,CAAC,SAAU,CAAA,aAAA,CAHhE;AAAA,QAIA,6BAAA,EAAqC,CAAC,CAAC,cAAc,CAAC,SAAU,CAAA,aAAA,CAJhE;OAhCF;MATW;EAAA,CAAf,CATA,CAAA;AAAA","file":"pivot.it.js","sourceRoot":"/source/","sourcesContent":["callWithJQuery = (pivotModule) ->\n if typeof exports is \"object\" and typeof module is \"object\" # CommonJS\n pivotModule require(\"jquery\")\n else if typeof define is \"function\" and define.amd # AMD\n define [\"jquery\"], pivotModule\n# Plain browser env\n else\n pivotModule jQuery\n\ncallWithJQuery ($) ->\n nf = $.pivotUtilities.numberFormat\n tpl = $.pivotUtilities.aggregatorTemplates\n\n frFmt = nf(thousandsSep: \" \", decimalSep: \",\")\n frFmtInt = nf(digitsAfterDecimal: 0, thousandsSep: \" \", decimalSep: \",\")\n frFmtPct = nf(digitsAfterDecimal: 1, scaler: 100, suffix: \"%\", thousandsSep: \" \", decimalSep: \",\")\n\n $.pivotUtilities.locales.it =\n localeStrings:\n renderError: \"Si è verificato un errore durante la creazione della tabella.\"\n computeError: \"Si è verificato un errore di calcolo nella tabella.\"\n uiRenderError: \"Si è verificato un errore durante il disegno di interfaccia della tabella pivot.\"\n selectAll: \"Seleziona tutto\"\n selectNone: \"Deseleziona tutto\"\n tooMany: \"(troppi valori da visualizzare)\"\n filterResults: \"Filtra i valori\"\n totals: \"Totali\"\n vs: \"su\"\n by: \"da\"\n\n aggregators:\n \"Numero\": tpl.count(frFmtInt)\n \"Numero di valori unici\": tpl.countUnique(frFmtInt)\n \"Elenco di valori unici\": tpl.listUnique(\", \")\n \"Somma\": tpl.sum(frFmt)\n \"Somma intera\": tpl.sum(frFmtInt)\n \"Media\": tpl.average(frFmt)\n \"Minimo\": tpl.min(frFmt)\n \"Massimo\": tpl.max(frFmt)\n \"Rapporto\": tpl.sumOverSum(frFmt)\n \"Limite superiore 80%\": tpl.sumOverSumBound80(true, frFmt)\n \"limite inferiore 80%\": tpl.sumOverSumBound80(false, frFmt)\n \"Somma proporzionale al totale\": tpl.fractionOf(tpl.sum(), \"total\", frFmtPct)\n \"Somma proporzionale alla riga\": tpl.fractionOf(tpl.sum(), \"row\", frFmtPct)\n \"Somma proporzionale alla colonna\": tpl.fractionOf(tpl.sum(), \"col\", frFmtPct)\n \"Numero proporzionale al totale\": tpl.fractionOf(tpl.count(), \"total\", frFmtPct)\n \"Numero proporzionale alla riga\": tpl.fractionOf(tpl.count(), \"row\", frFmtPct)\n \"Numero proporzionale alla colonna\": tpl.fractionOf(tpl.count(), \"col\", frFmtPct)\n\n renderers:\n \"Tabella\": $.pivotUtilities.renderers[\"Table\"]\n \"Tabella con grafico\": $.pivotUtilities.renderers[\"Table Barchart\"]\n \"Mappa di calore\": $.pivotUtilities.renderers[\"Heatmap\"]\n \"Mappa di calore per righe\": $.pivotUtilities.renderers[\"Row Heatmap\"]\n \"Mappa di calore per colonne\": $.pivotUtilities.renderers[\"Col Heatmap\"]\n\n\n"]}
--------------------------------------------------------------------------------
/public/dist/pivot.it.min.js:
--------------------------------------------------------------------------------
1 | (function(){var e;(e=function(e){return"object"==typeof exports&&"object"==typeof module?e(require("jquery")):"function"==typeof define&&define.amd?define(["jquery"],e):e(jQuery)})(function(e){var i,o,r,a,t;return a=e.pivotUtilities.numberFormat,t=e.pivotUtilities.aggregatorTemplates,i=a({thousandsSep:" ",decimalSep:","}),o=a({digitsAfterDecimal:0,thousandsSep:" ",decimalSep:","}),r=a({digitsAfterDecimal:1,scaler:100,suffix:"%",thousandsSep:" ",decimalSep:","}),e.pivotUtilities.locales.it={localeStrings:{renderError:"Si è verificato un errore durante la creazione della tabella.",computeError:"Si è verificato un errore di calcolo nella tabella.",uiRenderError:"Si è verificato un errore durante il disegno di interfaccia della tabella pivot.",selectAll:"Seleziona tutto",selectNone:"Deseleziona tutto",tooMany:"(troppi valori da visualizzare)",filterResults:"Filtra i valori",totals:"Totali",vs:"su",by:"da"},aggregators:{Numero:t.count(o),"Numero di valori unici":t.countUnique(o),"Elenco di valori unici":t.listUnique(", "),Somma:t.sum(i),"Somma intera":t.sum(o),Media:t.average(i),Minimo:t.min(i),Massimo:t.max(i),Rapporto:t.sumOverSum(i),"Limite superiore 80%":t.sumOverSumBound80(!0,i),"limite inferiore 80%":t.sumOverSumBound80(!1,i),"Somma proporzionale al totale":t.fractionOf(t.sum(),"total",r),"Somma proporzionale alla riga":t.fractionOf(t.sum(),"row",r),"Somma proporzionale alla colonna":t.fractionOf(t.sum(),"col",r),"Numero proporzionale al totale":t.fractionOf(t.count(),"total",r),"Numero proporzionale alla riga":t.fractionOf(t.count(),"row",r),"Numero proporzionale alla colonna":t.fractionOf(t.count(),"col",r)},renderers:{Tabella:e.pivotUtilities.renderers.Table,"Tabella con grafico":e.pivotUtilities.renderers["Table Barchart"],"Mappa di calore":e.pivotUtilities.renderers.Heatmap,"Mappa di calore per righe":e.pivotUtilities.renderers["Row Heatmap"],"Mappa di calore per colonne":e.pivotUtilities.renderers["Col Heatmap"]}}})}).call(this);
2 | //# sourceMappingURL=pivot.it.min.js.map
--------------------------------------------------------------------------------
/public/dist/pivot.it.min.js.map:
--------------------------------------------------------------------------------
1 | {"version":3,"sources":["/source/pivot.it.coffee","pivot.it.min.js"],"names":["callWithJQuery","pivotModule","exports","module","require","define","amd","jQuery","$","frFmt","frFmtInt","frFmtPct","nf","tpl","pivotUtilities","numberFormat","aggregatorTemplates","thousandsSep","decimalSep","digitsAfterDecimal","scaler","suffix","locales","it","localeStrings","renderError","computeError","uiRenderError","selectAll","selectNone","tooMany","filterResults","totals","vs","by","aggregators","Numero","count","Numero di valori unici","countUnique","Elenco di valori unici","listUnique","Somma","sum","Somma intera","Media","average","Minimo","min","Massimo","max","Rapporto","sumOverSum","Limite superiore 80%","sumOverSumBound80","limite inferiore 80%","Somma proporzionale al totale","fractionOf","Somma proporzionale alla riga","Somma proporzionale alla colonna","Numero proporzionale al totale","Numero proporzionale alla riga","Numero proporzionale alla colonna","renderers","Tabella","Tabella con grafico","Mappa di calore","Mappa di calore per righe","Mappa di calore per colonne","call","this"],"mappings":"CAAA,WAAA,GAAAA,IAAAA,EAAiB,SAACC,GAChB,MAAqB,gBAAlBC,UAAgD,gBAAjBC,QAChCF,EAAYG,QAAQ,WACG,kBAAjBC,SAAgCA,OAAOC,IAC7CD,QAAQ,UAAWJ,GAGnBA,EAAYM,UAED,SAACC,GACd,GAAAC,GAAAC,EAAAC,EAAAC,EAAAC,CCuBE,ODvBFD,GAAKJ,EAAEM,eAAeC,aACtBF,EAAML,EAAEM,eAAeE,oBAEvBP,EAAWG,GAAGK,aAAc,IAAKC,WAAY,MAC7CR,EAAWE,GAAGO,mBAAoB,EAAGF,aAAc,IAAKC,WAAY,MACpEP,EAAWC,GAAGO,mBAAoB,EAAGC,OAAQ,IAAKC,OAAQ,IAAKJ,aAAc,IAAKC,WAAY,MAE9FV,EAAEM,eAAeQ,QAAQC,IACvBC,eACEC,YAAa,gEACbC,aAAc,sDACdC,cAAe,mFACfC,UAAW,kBACXC,WAAY,oBACZC,QAAS,kCACTC,cAAe,kBACfC,OAAQ,SACRC,GAAI,KACJC,GAAI,MAENC,aACEC,OAAsCvB,EAAIwB,MAAM3B,GAChD4B,yBAAsCzB,EAAI0B,YAAY7B,GACtD8B,yBAAsC3B,EAAI4B,WAAW,MACrDC,MAAsC7B,EAAI8B,IAAIlC,GAC9CmC,eAAsC/B,EAAI8B,IAAIjC,GAC9CmC,MAAsChC,EAAIiC,QAAQrC,GAClDsC,OAAsClC,EAAImC,IAAIvC,GAC9CwC,QAAsCpC,EAAIqC,IAAIzC,GAC9C0C,SAAsCtC,EAAIuC,WAAW3C,GACrD4C,uBAAsCxC,EAAIyC,mBAAkB,EAAM7C,GAClE8C,uBAAsC1C,EAAIyC,mBAAkB,EAAO7C,GACnE+C,gCAAsC3C,EAAI4C,WAAW5C,EAAI8B,MAAS,QAAShC,GAC3E+C,gCAAsC7C,EAAI4C,WAAW5C,EAAI8B,MAAS,MAAShC,GAC3EgD,mCAAsC9C,EAAI4C,WAAW5C,EAAI8B,MAAS,MAAShC,GAC3EiD,iCAAsC/C,EAAI4C,WAAW5C,EAAIwB,QAAS,QAAS1B,GAC3EkD,iCAAsChD,EAAI4C,WAAW5C,EAAIwB,QAAS,MAAS1B,GAC3EmD,oCAAsCjD,EAAI4C,WAAW5C,EAAIwB,QAAS,MAAS1B,IAE7EoD,WACEC,QAAqCxD,EAAEM,eAAeiD,UAAU,MAChEE,sBAAqCzD,EAAEM,eAAeiD,UAAU,kBAChEG,kBAAqC1D,EAAEM,eAAeiD,UAAU,QAChEI,4BAAqC3D,EAAEM,eAAeiD,UAAU,eAChEK,8BAAqC5D,EAAEM,eAAeiD,UAAU,qBCqBnEM,KAAKC","file":"pivot.it.min.js","sourcesContent":["callWithJQuery = (pivotModule) ->\n if typeof exports is \"object\" and typeof module is \"object\" # CommonJS\n pivotModule require(\"jquery\")\n else if typeof define is \"function\" and define.amd # AMD\n define [\"jquery\"], pivotModule\n# Plain browser env\n else\n pivotModule jQuery\n\ncallWithJQuery ($) ->\n nf = $.pivotUtilities.numberFormat\n tpl = $.pivotUtilities.aggregatorTemplates\n\n frFmt = nf(thousandsSep: \" \", decimalSep: \",\")\n frFmtInt = nf(digitsAfterDecimal: 0, thousandsSep: \" \", decimalSep: \",\")\n frFmtPct = nf(digitsAfterDecimal: 1, scaler: 100, suffix: \"%\", thousandsSep: \" \", decimalSep: \",\")\n\n $.pivotUtilities.locales.it =\n localeStrings:\n renderError: \"Si è verificato un errore durante la creazione della tabella.\"\n computeError: \"Si è verificato un errore di calcolo nella tabella.\"\n uiRenderError: \"Si è verificato un errore durante il disegno di interfaccia della tabella pivot.\"\n selectAll: \"Seleziona tutto\"\n selectNone: \"Deseleziona tutto\"\n tooMany: \"(troppi valori da visualizzare)\"\n filterResults: \"Filtra i valori\"\n totals: \"Totali\"\n vs: \"su\"\n by: \"da\"\n\n aggregators:\n \"Numero\": tpl.count(frFmtInt)\n \"Numero di valori unici\": tpl.countUnique(frFmtInt)\n \"Elenco di valori unici\": tpl.listUnique(\", \")\n \"Somma\": tpl.sum(frFmt)\n \"Somma intera\": tpl.sum(frFmtInt)\n \"Media\": tpl.average(frFmt)\n \"Minimo\": tpl.min(frFmt)\n \"Massimo\": tpl.max(frFmt)\n \"Rapporto\": tpl.sumOverSum(frFmt)\n \"Limite superiore 80%\": tpl.sumOverSumBound80(true, frFmt)\n \"limite inferiore 80%\": tpl.sumOverSumBound80(false, frFmt)\n \"Somma proporzionale al totale\": tpl.fractionOf(tpl.sum(), \"total\", frFmtPct)\n \"Somma proporzionale alla riga\": tpl.fractionOf(tpl.sum(), \"row\", frFmtPct)\n \"Somma proporzionale alla colonna\": tpl.fractionOf(tpl.sum(), \"col\", frFmtPct)\n \"Numero proporzionale al totale\": tpl.fractionOf(tpl.count(), \"total\", frFmtPct)\n \"Numero proporzionale alla riga\": tpl.fractionOf(tpl.count(), \"row\", frFmtPct)\n \"Numero proporzionale alla colonna\": tpl.fractionOf(tpl.count(), \"col\", frFmtPct)\n\n renderers:\n \"Tabella\": $.pivotUtilities.renderers[\"Table\"]\n \"Tabella con grafico\": $.pivotUtilities.renderers[\"Table Barchart\"]\n \"Mappa di calore\": $.pivotUtilities.renderers[\"Heatmap\"]\n \"Mappa di calore per righe\": $.pivotUtilities.renderers[\"Row Heatmap\"]\n \"Mappa di calore per colonne\": $.pivotUtilities.renderers[\"Col Heatmap\"]\n\n\n","(function(){var e;(e=function(e){return\"object\"==typeof exports&&\"object\"==typeof module?e(require(\"jquery\")):\"function\"==typeof define&&define.amd?define([\"jquery\"],e):e(jQuery)})(function(e){var i,o,r,a,t;return a=e.pivotUtilities.numberFormat,t=e.pivotUtilities.aggregatorTemplates,i=a({thousandsSep:\" \",decimalSep:\",\"}),o=a({digitsAfterDecimal:0,thousandsSep:\" \",decimalSep:\",\"}),r=a({digitsAfterDecimal:1,scaler:100,suffix:\"%\",thousandsSep:\" \",decimalSep:\",\"}),e.pivotUtilities.locales.it={localeStrings:{renderError:\"Si è verificato un errore durante la creazione della tabella.\",computeError:\"Si è verificato un errore di calcolo nella tabella.\",uiRenderError:\"Si è verificato un errore durante il disegno di interfaccia della tabella pivot.\",selectAll:\"Seleziona tutto\",selectNone:\"Deseleziona tutto\",tooMany:\"(troppi valori da visualizzare)\",filterResults:\"Filtra i valori\",totals:\"Totali\",vs:\"su\",by:\"da\"},aggregators:{Numero:t.count(o),\"Numero di valori unici\":t.countUnique(o),\"Elenco di valori unici\":t.listUnique(\", \"),Somma:t.sum(i),\"Somma intera\":t.sum(o),Media:t.average(i),Minimo:t.min(i),Massimo:t.max(i),Rapporto:t.sumOverSum(i),\"Limite superiore 80%\":t.sumOverSumBound80(!0,i),\"limite inferiore 80%\":t.sumOverSumBound80(!1,i),\"Somma proporzionale al totale\":t.fractionOf(t.sum(),\"total\",r),\"Somma proporzionale alla riga\":t.fractionOf(t.sum(),\"row\",r),\"Somma proporzionale alla colonna\":t.fractionOf(t.sum(),\"col\",r),\"Numero proporzionale al totale\":t.fractionOf(t.count(),\"total\",r),\"Numero proporzionale alla riga\":t.fractionOf(t.count(),\"row\",r),\"Numero proporzionale alla colonna\":t.fractionOf(t.count(),\"col\",r)},renderers:{Tabella:e.pivotUtilities.renderers.Table,\"Tabella con grafico\":e.pivotUtilities.renderers[\"Table Barchart\"],\"Mappa di calore\":e.pivotUtilities.renderers.Heatmap,\"Mappa di calore per righe\":e.pivotUtilities.renderers[\"Row Heatmap\"],\"Mappa di calore per colonne\":e.pivotUtilities.renderers[\"Col Heatmap\"]}}})}).call(this);\n//# sourceMappingURL=pivot.it.min.js.map"],"sourceRoot":"/source/"}
--------------------------------------------------------------------------------
/public/dist/pivot.min.css:
--------------------------------------------------------------------------------
1 | .pvtUi{color:#333}table.pvtTable{font-size:8pt;text-align:left;border-collapse:collapse}table.pvtTable tbody tr th,table.pvtTable thead tr th{background-color:#e6EEEE;border:1px solid #CDCDCD;font-size:8pt;padding:5px}table.pvtTable .pvtColLabel{text-align:center}table.pvtTable .pvtTotalLabel{text-align:right}table.pvtTable tbody tr td{color:#3D3D3D;padding:5px;background-color:#FFF;border:1px solid #CDCDCD;vertical-align:top;text-align:right}.pvtGrandTotal,.pvtTotal{font-weight:700}.pvtVals{text-align:center;white-space:nowrap}.pvtColOrder,.pvtRowOrder{cursor:pointer;width:15px;margin-left:5px;display:inline-block}.pvtAggregator{margin-bottom:5px}.pvtAxisContainer,.pvtVals{border:1px solid gray;background:#EEE;padding:5px;min-width:20px;min-height:20px}.pvtAxisContainer li{padding:8px 6px;list-style-type:none;cursor:move}.pvtAxisContainer li.pvtPlaceholder{-webkit-border-radius:5px;padding:3px 15px;-moz-border-radius:5px;border-radius:5px;border:1px dashed #aaa}.pvtAxisContainer li span.pvtAttr{-webkit-text-size-adjust:100%;background:#F3F3F3;border:1px solid #DEDEDE;padding:2px 5px;white-space:nowrap;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px}.pvtTriangle{cursor:pointer;color:grey}.pvtHorizList li{display:inline}.pvtVertList{vertical-align:top}.pvtFilteredAttribute{font-style:italic}.pvtFilterBox{z-index:100;width:300px;border:1px solid gray;background-color:#fff;position:absolute;text-align:center}.pvtFilterBox h4{margin:15px}.pvtFilterBox p{margin:10px auto}.pvtFilterBox label{font-weight:400}.pvtFilterBox input[type=checkbox]{margin-right:10px;margin-left:10px}.pvtFilterBox input[type=text]{width:230px}.pvtFilterBox .count{color:gray;font-weight:400;margin-left:3px}.pvtCheckContainer{text-align:left;font-size:14px;white-space:nowrap;overflow-y:scroll;width:100%;max-height:250px;border-top:1px solid #d3d3d3;border-bottom:1px solid #d3d3d3}.pvtCheckContainer p{margin:5px}.pvtRendererArea{padding:5px}
--------------------------------------------------------------------------------
/public/dist/pivot.nl.js:
--------------------------------------------------------------------------------
1 | (function() {
2 | var callWithJQuery;
3 |
4 | callWithJQuery = function(pivotModule) {
5 | if (typeof exports === "object" && typeof module === "object") {
6 | return pivotModule(require("jquery"));
7 | } else if (typeof define === "function" && define.amd) {
8 | return define(["jquery"], pivotModule);
9 | } else {
10 | return pivotModule(jQuery);
11 | }
12 | };
13 |
14 | callWithJQuery(function($) {
15 | var frFmt, frFmtInt, frFmtPct, nf, tpl;
16 | nf = $.pivotUtilities.numberFormat;
17 | tpl = $.pivotUtilities.aggregatorTemplates;
18 | frFmt = nf({
19 | thousandsSep: " ",
20 | decimalSep: ","
21 | });
22 | frFmtInt = nf({
23 | digitsAfterDecimal: 0,
24 | thousandsSep: " ",
25 | decimalSep: ","
26 | });
27 | frFmtPct = nf({
28 | digitsAfterDecimal: 1,
29 | scaler: 100,
30 | suffix: "%",
31 | thousandsSep: " ",
32 | decimalSep: ","
33 | });
34 | return $.pivotUtilities.locales.nl = {
35 | localeStrings: {
36 | renderError: "Er is een fout opgetreden bij het renderen van de kruistabel.",
37 | computeError: "Er is een fout opgetreden bij het berekenen van de kruistabel.",
38 | uiRenderError: "Er is een fout opgetreden bij het tekenen van de interface van de kruistabel.",
39 | selectAll: "Alles selecteren",
40 | selectNone: "Niets selecteren",
41 | tooMany: "(te veel waarden om weer te geven)",
42 | filterResults: "Filter resultaten",
43 | totals: "Totaal",
44 | vs: "versus",
45 | by: "per"
46 | },
47 | aggregators: {
48 | "Aantal": tpl.count(frFmtInt),
49 | "Aantal unieke waarden": tpl.countUnique(frFmtInt),
50 | "Lijst unieke waarden": tpl.listUnique(", "),
51 | "Som": tpl.sum(frFmt),
52 | "Som van gehele getallen": tpl.sum(frFmtInt),
53 | "Gemiddelde": tpl.average(frFmt),
54 | "Minimum": tpl.min(frFmt),
55 | "Maximum": tpl.max(frFmt),
56 | "Som over som": tpl.sumOverSum(frFmt),
57 | "80% bovengrens": tpl.sumOverSumBound80(true, frFmt),
58 | "80% ondergrens": tpl.sumOverSumBound80(false, frFmt),
59 | "Som in verhouding tot het totaal": tpl.fractionOf(tpl.sum(), "total", frFmtPct),
60 | "Som in verhouding tot de rij": tpl.fractionOf(tpl.sum(), "row", frFmtPct),
61 | "Som in verhouding tot de kolom": tpl.fractionOf(tpl.sum(), "col", frFmtPct),
62 | "Aantal in verhouding tot het totaal": tpl.fractionOf(tpl.count(), "total", frFmtPct),
63 | "Aantal in verhouding tot de rij": tpl.fractionOf(tpl.count(), "row", frFmtPct),
64 | "Aantal in verhouding tot de kolom": tpl.fractionOf(tpl.count(), "col", frFmtPct)
65 | },
66 | renderers: {
67 | "Tabel": $.pivotUtilities.renderers["Table"],
68 | "Tabel met staafdiagrammen": $.pivotUtilities.renderers["Table Barchart"],
69 | "Warmtekaart": $.pivotUtilities.renderers["Heatmap"],
70 | "Warmtekaart per rij": $.pivotUtilities.renderers["Row Heatmap"],
71 | "Warmtekaart per kolom": $.pivotUtilities.renderers["Col Heatmap"]
72 | }
73 | };
74 | });
75 |
76 | }).call(this);
77 |
78 | //# sourceMappingURL=pivot.nl.js.map
--------------------------------------------------------------------------------
/public/dist/pivot.nl.js.map:
--------------------------------------------------------------------------------
1 | {"version":3,"sources":["pivot.nl.coffee"],"names":[],"mappings":"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","file":"pivot.nl.js","sourceRoot":"/source/","sourcesContent":["callWithJQuery = (pivotModule) ->\n if typeof exports is \"object\" and typeof module is \"object\" # CommonJS\n pivotModule require(\"jquery\")\n else if typeof define is \"function\" and define.amd # AMD\n define [\"jquery\"], pivotModule\n # Plain browser env\n else\n pivotModule jQuery\n \ncallWithJQuery ($) ->\n nf = $.pivotUtilities.numberFormat\n tpl = $.pivotUtilities.aggregatorTemplates\n\n frFmt = nf(thousandsSep: \" \", decimalSep: \",\")\n frFmtInt = nf(digitsAfterDecimal: 0, thousandsSep: \" \", decimalSep: \",\")\n frFmtPct = nf(digitsAfterDecimal: 1, scaler: 100, suffix: \"%\", thousandsSep: \" \", decimalSep: \",\")\n\n $.pivotUtilities.locales.nl = \n localeStrings:\n renderError: \"Er is een fout opgetreden bij het renderen van de kruistabel.\"\n computeError: \"Er is een fout opgetreden bij het berekenen van de kruistabel.\"\n uiRenderError: \"Er is een fout opgetreden bij het tekenen van de interface van de kruistabel.\"\n selectAll: \"Alles selecteren\"\n selectNone: \"Niets selecteren\"\n tooMany: \"(te veel waarden om weer te geven)\"\n filterResults: \"Filter resultaten\"\n totals: \"Totaal\"\n vs: \"versus\"\n by: \"per\"\n\n aggregators: \n \"Aantal\": tpl.count(frFmtInt)\n \"Aantal unieke waarden\": tpl.countUnique(frFmtInt)\n \"Lijst unieke waarden\": tpl.listUnique(\", \")\n \"Som\": tpl.sum(frFmt)\n \"Som van gehele getallen\": tpl.sum(frFmtInt)\n \"Gemiddelde\": tpl.average(frFmt)\n \"Minimum\": tpl.min(frFmt)\n \"Maximum\": tpl.max(frFmt)\n \"Som over som\": tpl.sumOverSum(frFmt)\n \"80% bovengrens\": tpl.sumOverSumBound80(true, frFmt)\n \"80% ondergrens\": \t\t\t tpl.sumOverSumBound80(false, frFmt)\n \"Som in verhouding tot het totaal\": tpl.fractionOf(tpl.sum(), \"total\", frFmtPct)\n \"Som in verhouding tot de rij\": tpl.fractionOf(tpl.sum(), \"row\", frFmtPct)\n \"Som in verhouding tot de kolom\": tpl.fractionOf(tpl.sum(), \"col\", frFmtPct)\n \"Aantal in verhouding tot het totaal\": tpl.fractionOf(tpl.count(), \"total\", frFmtPct)\n \"Aantal in verhouding tot de rij\": tpl.fractionOf(tpl.count(), \"row\", frFmtPct)\n \"Aantal in verhouding tot de kolom\": tpl.fractionOf(tpl.count(), \"col\", frFmtPct)\n\n renderers:\n \"Tabel\": $.pivotUtilities.renderers[\"Table\"]\n \"Tabel met staafdiagrammen\": $.pivotUtilities.renderers[\"Table Barchart\"]\n \"Warmtekaart\": $.pivotUtilities.renderers[\"Heatmap\"]\n \"Warmtekaart per rij\": $.pivotUtilities.renderers[\"Row Heatmap\"]\n \"Warmtekaart per kolom\": $.pivotUtilities.renderers[\"Col Heatmap\"]\n"]}
--------------------------------------------------------------------------------
/public/dist/pivot.nl.min.js:
--------------------------------------------------------------------------------
1 | (function(){var e;(e=function(e){return"object"==typeof exports&&"object"==typeof module?e(require("jquery")):"function"==typeof define&&define.amd?define(["jquery"],e):e(jQuery)})(function(e){var t,r,i,n,o;return n=e.pivotUtilities.numberFormat,o=e.pivotUtilities.aggregatorTemplates,t=n({thousandsSep:" ",decimalSep:","}),r=n({digitsAfterDecimal:0,thousandsSep:" ",decimalSep:","}),i=n({digitsAfterDecimal:1,scaler:100,suffix:"%",thousandsSep:" ",decimalSep:","}),e.pivotUtilities.locales.nl={localeStrings:{renderError:"Er is een fout opgetreden bij het renderen van de kruistabel.",computeError:"Er is een fout opgetreden bij het berekenen van de kruistabel.",uiRenderError:"Er is een fout opgetreden bij het tekenen van de interface van de kruistabel.",selectAll:"Alles selecteren",selectNone:"Niets selecteren",tooMany:"(te veel waarden om weer te geven)",filterResults:"Filter resultaten",totals:"Totaal",vs:"versus",by:"per"},aggregators:{Aantal:o.count(r),"Aantal unieke waarden":o.countUnique(r),"Lijst unieke waarden":o.listUnique(", "),Som:o.sum(t),"Som van gehele getallen":o.sum(r),Gemiddelde:o.average(t),Minimum:o.min(t),Maximum:o.max(t),"Som over som":o.sumOverSum(t),"80% bovengrens":o.sumOverSumBound80(!0,t),"80% ondergrens":o.sumOverSumBound80(!1,t),"Som in verhouding tot het totaal":o.fractionOf(o.sum(),"total",i),"Som in verhouding tot de rij":o.fractionOf(o.sum(),"row",i),"Som in verhouding tot de kolom":o.fractionOf(o.sum(),"col",i),"Aantal in verhouding tot het totaal":o.fractionOf(o.count(),"total",i),"Aantal in verhouding tot de rij":o.fractionOf(o.count(),"row",i),"Aantal in verhouding tot de kolom":o.fractionOf(o.count(),"col",i)},renderers:{Tabel:e.pivotUtilities.renderers.Table,"Tabel met staafdiagrammen":e.pivotUtilities.renderers["Table Barchart"],Warmtekaart:e.pivotUtilities.renderers.Heatmap,"Warmtekaart per rij":e.pivotUtilities.renderers["Row Heatmap"],"Warmtekaart per kolom":e.pivotUtilities.renderers["Col Heatmap"]}}})}).call(this);
2 | //# sourceMappingURL=pivot.nl.min.js.map
--------------------------------------------------------------------------------
/public/dist/pivot.pl.js:
--------------------------------------------------------------------------------
1 | (function() {
2 | var callWithJQuery;
3 |
4 | callWithJQuery = function(pivotModule) {
5 | if (typeof exports === "object" && typeof module === "object") {
6 | return pivotModule(require("jquery"));
7 | } else if (typeof define === "function" && define.amd) {
8 | return define(["jquery"], pivotModule);
9 | } else {
10 | return pivotModule(jQuery);
11 | }
12 | };
13 |
14 | callWithJQuery(function($) {
15 | var nf, plFmt, plFmtInt, plFmtPct, tpl;
16 | nf = $.pivotUtilities.numberFormat;
17 | tpl = $.pivotUtilities.aggregatorTemplates;
18 | plFmt = nf({
19 | thousandsSep: " ",
20 | decimalSep: ","
21 | });
22 | plFmtInt = nf({
23 | digitsAfterDecimal: 0,
24 | thousandsSep: " ",
25 | decimalSep: ","
26 | });
27 | plFmtPct = nf({
28 | digitsAfterDecimal: 1,
29 | scaler: 100,
30 | suffix: "%",
31 | thousandsSep: " ",
32 | decimalSep: ","
33 | });
34 | return $.pivotUtilities.locales.pl = {
35 | localeStrings: {
36 | renderError: "Wystąpił błąd podczas renderowania wyników PivotTable.",
37 | computeError: "Wystąpił błąd podczas obliczania wyników PivotTable.",
38 | uiRenderError: "Wystąpił błąd podczas renderowania UI PivotTable.",
39 | selectAll: "Zaznacz wszystko",
40 | selectNone: "Odznacz wszystkie",
41 | tooMany: "(za dużo do wylistowania)",
42 | filterResults: "Filtruj wartości",
43 | apply: "Zastosuj",
44 | cancel: "Anuluj",
45 | totals: "Podsumowanie",
46 | vs: "vs",
47 | by: "przez"
48 | },
49 | aggregators: {
50 | "Liczba": tpl.count(plFmtInt),
51 | "Liczba Unikatowych Wartości": tpl.countUnique(plFmtInt),
52 | "Lista Unikatowych Wartości": tpl.listUnique(", "),
53 | "Suma": tpl.sum(plFmt),
54 | "Całkowita Suma": tpl.sum(plFmtInt),
55 | "Średnia": tpl.average(plFmt),
56 | "Minimum": tpl.min(plFmt),
57 | "Maksimum": tpl.max(plFmt),
58 | "Pierwszy": tpl.first(plFmt),
59 | "Ostatni": tpl.last(plFmt),
60 | "Suma po Sumie": tpl.sumOverSum(plFmt),
61 | "80% Kres Dolny": tpl.sumOverSumBound80(true, plFmt),
62 | "80% Kres Górny": tpl.sumOverSumBound80(false, plFmt),
63 | "Suma jako Ułamek Całości": tpl.fractionOf(tpl.sum(), "total", plFmtPct),
64 | "Suma jako Ułamek w Wierszach": tpl.fractionOf(tpl.sum(), "row", plFmtPct),
65 | "Suma jako Ułamek w Kolumnach": tpl.fractionOf(tpl.sum(), "col", plFmtPct),
66 | "Liczba jako Ułamek Całości": tpl.fractionOf(tpl.count(), "total", plFmtPct),
67 | "Liczba jako Ułamek w Wierszach": tpl.fractionOf(tpl.count(), "row", plFmtPct),
68 | "Liczba jako Ułamek w Kolumnach": tpl.fractionOf(tpl.count(), "col", plFmtPct)
69 | },
70 | renderers: {
71 | "Tabela": $.pivotUtilities.renderers["Table"],
72 | "Tabela z Wykresem Słupkowym": $.pivotUtilities.renderers["Table Barchart"],
73 | "Mapa cieplna": $.pivotUtilities.renderers["Heatmap"],
74 | "Mapa cieplna po Wierszach": $.pivotUtilities.renderers["Row Heatmap"],
75 | "Mapa cieplna po Kolumnach": $.pivotUtilities.renderers["Col Heatmap"]
76 | }
77 | };
78 | });
79 |
80 | }).call(this);
81 |
82 | //# sourceMappingURL=pivot.pl.js.map
--------------------------------------------------------------------------------
/public/dist/pivot.pl.js.map:
--------------------------------------------------------------------------------
1 | {"version":3,"sources":["pivot.pl.coffee"],"names":[],"mappings":"AAAA;AAAA,MAAA,cAAA;;AAAA,EAAA,cAAA,GAAiB,SAAC,WAAD,GAAA;AACb,IAAA,IAAG,MAAA,CAAA,OAAA,KAAkB,QAAlB,IAA+B,MAAA,CAAA,MAAA,KAAiB,QAAnD;aACI,WAAA,CAAY,OAAA,CAAQ,QAAR,CAAZ,EADJ;KAAA,MAEK,IAAG,MAAA,CAAA,MAAA,KAAiB,UAAjB,IAAgC,MAAM,CAAC,GAA1C;aACD,MAAA,CAAO,CAAC,QAAD,CAAP,EAAmB,WAAnB,EADC;KAAA,MAAA;aAID,WAAA,CAAY,MAAZ,EAJC;KAHQ;EAAA,CAAjB,CAAA;;AAAA,EASA,cAAA,CAAe,SAAC,CAAD,GAAA;AACX,QAAA,kCAAA;AAAA,IAAA,EAAA,GAAK,CAAC,CAAC,cAAc,CAAC,YAAtB,CAAA;AAAA,IACA,GAAA,GAAM,CAAC,CAAC,cAAc,CAAC,mBADvB,CAAA;AAAA,IAGA,KAAA,GAAW,EAAA,CAAG;AAAA,MAAA,YAAA,EAAc,GAAd;AAAA,MAAmB,UAAA,EAAY,GAA/B;KAAH,CAHX,CAAA;AAAA,IAIA,QAAA,GAAW,EAAA,CAAG;AAAA,MAAA,kBAAA,EAAoB,CAApB;AAAA,MAAuB,YAAA,EAAc,GAArC;AAAA,MAA0C,UAAA,EAAY,GAAtD;KAAH,CAJX,CAAA;AAAA,IAKA,QAAA,GAAW,EAAA,CAAG;AAAA,MAAA,kBAAA,EAAoB,CAApB;AAAA,MAAuB,MAAA,EAAQ,GAA/B;AAAA,MAAoC,MAAA,EAAQ,GAA5C;AAAA,MAAiD,YAAA,EAAc,GAA/D;AAAA,MAAoE,UAAA,EAAY,GAAhF;KAAH,CALX,CAAA;WAOA,CAAC,CAAC,cAAc,CAAC,OAAO,CAAC,EAAzB,GACI;AAAA,MAAA,aAAA,EACI;AAAA,QAAA,WAAA,EAAa,wDAAb;AAAA,QACA,YAAA,EAAc,sDADd;AAAA,QAEA,aAAA,EAAe,mDAFf;AAAA,QAGA,SAAA,EAAW,kBAHX;AAAA,QAIA,UAAA,EAAY,mBAJZ;AAAA,QAKA,OAAA,EAAS,2BALT;AAAA,QAMA,aAAA,EAAe,kBANf;AAAA,QAOA,KAAA,EAAO,UAPP;AAAA,QAQA,MAAA,EAAQ,QARR;AAAA,QASA,MAAA,EAAQ,cATR;AAAA,QAUA,EAAA,EAAI,IAVJ;AAAA,QAWA,EAAA,EAAI,OAXJ;OADJ;AAAA,MAcA,WAAA,EACI;AAAA,QAAA,QAAA,EAAgC,GAAG,CAAC,KAAJ,CAAU,QAAV,CAAhC;AAAA,QACA,6BAAA,EAAgC,GAAG,CAAC,WAAJ,CAAgB,QAAhB,CADhC;AAAA,QAEA,4BAAA,EAAgC,GAAG,CAAC,UAAJ,CAAe,IAAf,CAFhC;AAAA,QAGA,MAAA,EAAgC,GAAG,CAAC,GAAJ,CAAQ,KAAR,CAHhC;AAAA,QAIA,gBAAA,EAAgC,GAAG,CAAC,GAAJ,CAAQ,QAAR,CAJhC;AAAA,QAKA,SAAA,EAAgC,GAAG,CAAC,OAAJ,CAAY,KAAZ,CALhC;AAAA,QAMA,SAAA,EAAgC,GAAG,CAAC,GAAJ,CAAQ,KAAR,CANhC;AAAA,QAOA,UAAA,EAAgC,GAAG,CAAC,GAAJ,CAAQ,KAAR,CAPhC;AAAA,QAQA,UAAA,EAAgC,GAAG,CAAC,KAAJ,CAAU,KAAV,CARhC;AAAA,QASA,SAAA,EAAgC,GAAG,CAAC,IAAJ,CAAS,KAAT,CAThC;AAAA,QAUA,eAAA,EAAgC,GAAG,CAAC,UAAJ,CAAe,KAAf,CAVhC;AAAA,QAWA,gBAAA,EAAgC,GAAG,CAAC,iBAAJ,CAAsB,IAAtB,EAA4B,KAA5B,CAXhC;AAAA,QAYA,gBAAA,EAAgC,GAAG,CAAC,iBAAJ,CAAsB,KAAtB,EAA6B,KAA7B,CAZhC;AAAA,QAaA,0BAAA,EAAgC,GAAG,CAAC,UAAJ,CAAe,GAAG,CAAC,GAAJ,CAAA,CAAf,EAAgC,OAAhC,EAAyC,QAAzC,CAbhC;AAAA,QAcA,8BAAA,EAAoC,GAAG,CAAC,UAAJ,CAAe,GAAG,CAAC,GAAJ,CAAA,CAAf,EAA4B,KAA5B,EAAqC,QAArC,CAdpC;AAAA,QAeA,8BAAA,EAAoC,GAAG,CAAC,UAAJ,CAAe,GAAG,CAAC,GAAJ,CAAA,CAAf,EAA4B,KAA5B,EAAqC,QAArC,CAfpC;AAAA,QAgBA,4BAAA,EAAoC,GAAG,CAAC,UAAJ,CAAe,GAAG,CAAC,KAAJ,CAAA,CAAf,EAA4B,OAA5B,EAAqC,QAArC,CAhBpC;AAAA,QAiBA,gCAAA,EAAoC,GAAG,CAAC,UAAJ,CAAe,GAAG,CAAC,KAAJ,CAAA,CAAf,EAA4B,KAA5B,EAAqC,QAArC,CAjBpC;AAAA,QAkBA,gCAAA,EAAoC,GAAG,CAAC,UAAJ,CAAe,GAAG,CAAC,KAAJ,CAAA,CAAf,EAA4B,KAA5B,EAAqC,QAArC,CAlBpC;OAfJ;AAAA,MAmCA,SAAA,EACI;AAAA,QAAA,QAAA,EAAgC,CAAC,CAAC,cAAc,CAAC,SAAU,CAAA,OAAA,CAA3D;AAAA,QACA,6BAAA,EAAgC,CAAC,CAAC,cAAc,CAAC,SAAU,CAAA,gBAAA,CAD3D;AAAA,QAEA,cAAA,EAAgC,CAAC,CAAC,cAAc,CAAC,SAAU,CAAA,SAAA,CAF3D;AAAA,QAGA,2BAAA,EAAgC,CAAC,CAAC,cAAc,CAAC,SAAU,CAAA,aAAA,CAH3D;AAAA,QAIA,2BAAA,EAAgC,CAAC,CAAC,cAAc,CAAC,SAAU,CAAA,aAAA,CAJ3D;OApCJ;MATO;EAAA,CAAf,CATA,CAAA;AAAA","file":"pivot.pl.js","sourceRoot":"/source/","sourcesContent":["callWithJQuery = (pivotModule) ->\n if typeof exports is \"object\" and typeof module is \"object\" # CommonJS\n pivotModule require(\"jquery\")\n else if typeof define is \"function\" and define.amd # AMD\n define [\"jquery\"], pivotModule\n # Plain browser env\n else\n pivotModule jQuery\n \ncallWithJQuery ($) ->\n nf = $.pivotUtilities.numberFormat\n tpl = $.pivotUtilities.aggregatorTemplates\n\n plFmt = nf(thousandsSep: \" \", decimalSep: \",\")\n plFmtInt = nf(digitsAfterDecimal: 0, thousandsSep: \" \", decimalSep: \",\")\n plFmtPct = nf(digitsAfterDecimal: 1, scaler: 100, suffix: \"%\", thousandsSep: \" \", decimalSep: \",\")\n\n $.pivotUtilities.locales.pl =\n localeStrings:\n renderError: \"Wystąpił błąd podczas renderowania wyników PivotTable.\"\n computeError: \"Wystąpił błąd podczas obliczania wyników PivotTable.\"\n uiRenderError: \"Wystąpił błąd podczas renderowania UI PivotTable.\"\n selectAll: \"Zaznacz wszystko\"\n selectNone: \"Odznacz wszystkie\"\n tooMany: \"(za dużo do wylistowania)\"\n filterResults: \"Filtruj wartości\"\n apply: \"Zastosuj\"\n cancel: \"Anuluj\"\n totals: \"Podsumowanie\"\n vs: \"vs\"\n by: \"przez\"\n\n aggregators: \n \"Liczba\": tpl.count(plFmtInt)\n \"Liczba Unikatowych Wartości\": tpl.countUnique(plFmtInt)\n \"Lista Unikatowych Wartości\": tpl.listUnique(\", \")\n \"Suma\": tpl.sum(plFmt)\n \"Całkowita Suma\": tpl.sum(plFmtInt)\n \"Średnia\": tpl.average(plFmt)\n \"Minimum\": tpl.min(plFmt)\n \"Maksimum\": tpl.max(plFmt)\n \"Pierwszy\": tpl.first(plFmt)\n \"Ostatni\": tpl.last(plFmt)\n \"Suma po Sumie\": tpl.sumOverSum(plFmt)\n \"80% Kres Dolny\": tpl.sumOverSumBound80(true, plFmt)\n \"80% Kres Górny\": tpl.sumOverSumBound80(false, plFmt)\n \"Suma jako Ułamek Całości\": tpl.fractionOf(tpl.sum(), \"total\", plFmtPct)\n \"Suma jako Ułamek w Wierszach\": tpl.fractionOf(tpl.sum(), \"row\", plFmtPct)\n \"Suma jako Ułamek w Kolumnach\": tpl.fractionOf(tpl.sum(), \"col\", plFmtPct)\n \"Liczba jako Ułamek Całości\": tpl.fractionOf(tpl.count(), \"total\", plFmtPct)\n \"Liczba jako Ułamek w Wierszach\": tpl.fractionOf(tpl.count(), \"row\", plFmtPct)\n \"Liczba jako Ułamek w Kolumnach\": tpl.fractionOf(tpl.count(), \"col\", plFmtPct)\n\n renderers:\n \"Tabela\": $.pivotUtilities.renderers[\"Table\"]\n \"Tabela z Wykresem Słupkowym\": $.pivotUtilities.renderers[\"Table Barchart\"]\n \"Mapa cieplna\": $.pivotUtilities.renderers[\"Heatmap\"]\n \"Mapa cieplna po Wierszach\": $.pivotUtilities.renderers[\"Row Heatmap\"]\n \"Mapa cieplna po Kolumnach\": $.pivotUtilities.renderers[\"Col Heatmap\"]\n"]}
--------------------------------------------------------------------------------
/public/dist/pivot.pl.min.js:
--------------------------------------------------------------------------------
1 | (function(){var e;(e=function(e){return"object"==typeof exports&&"object"==typeof module?e(require("jquery")):"function"==typeof define&&define.amd?define(["jquery"],e):e(jQuery)})(function(e){var a,i,t,o,r;return a=e.pivotUtilities.numberFormat,r=e.pivotUtilities.aggregatorTemplates,i=a({thousandsSep:" ",decimalSep:","}),t=a({digitsAfterDecimal:0,thousandsSep:" ",decimalSep:","}),o=a({digitsAfterDecimal:1,scaler:100,suffix:"%",thousandsSep:" ",decimalSep:","}),e.pivotUtilities.locales.pl={localeStrings:{renderError:"Wystąpił błąd podczas renderowania wyników PivotTable.",computeError:"Wystąpił błąd podczas obliczania wyników PivotTable.",uiRenderError:"Wystąpił błąd podczas renderowania UI PivotTable.",selectAll:"Zaznacz wszystko",selectNone:"Odznacz wszystkie",tooMany:"(za dużo do wylistowania)",filterResults:"Filtruj wartości",apply:"Zastosuj",cancel:"Anuluj",totals:"Podsumowanie",vs:"vs",by:"przez"},aggregators:{Liczba:r.count(t),"Liczba Unikatowych Wartości":r.countUnique(t),"Lista Unikatowych Wartości":r.listUnique(", "),Suma:r.sum(i),"Całkowita Suma":r.sum(t),"Średnia":r.average(i),Minimum:r.min(i),Maksimum:r.max(i),Pierwszy:r.first(i),Ostatni:r.last(i),"Suma po Sumie":r.sumOverSum(i),"80% Kres Dolny":r.sumOverSumBound80(!0,i),"80% Kres Górny":r.sumOverSumBound80(!1,i),"Suma jako Ułamek Całości":r.fractionOf(r.sum(),"total",o),"Suma jako Ułamek w Wierszach":r.fractionOf(r.sum(),"row",o),"Suma jako Ułamek w Kolumnach":r.fractionOf(r.sum(),"col",o),"Liczba jako Ułamek Całości":r.fractionOf(r.count(),"total",o),"Liczba jako Ułamek w Wierszach":r.fractionOf(r.count(),"row",o),"Liczba jako Ułamek w Kolumnach":r.fractionOf(r.count(),"col",o)},renderers:{Tabela:e.pivotUtilities.renderers.Table,"Tabela z Wykresem Słupkowym":e.pivotUtilities.renderers["Table Barchart"],"Mapa cieplna":e.pivotUtilities.renderers.Heatmap,"Mapa cieplna po Wierszach":e.pivotUtilities.renderers["Row Heatmap"],"Mapa cieplna po Kolumnach":e.pivotUtilities.renderers["Col Heatmap"]}}})}).call(this);
2 | //# sourceMappingURL=pivot.pl.min.js.map
--------------------------------------------------------------------------------
/public/dist/pivot.pt.js:
--------------------------------------------------------------------------------
1 | (function() {
2 | var callWithJQuery;
3 |
4 | callWithJQuery = function(pivotModule) {
5 | if (typeof exports === "object" && typeof module === "object") {
6 | return pivotModule(require("jquery"));
7 | } else if (typeof define === "function" && define.amd) {
8 | return define(["jquery"], pivotModule);
9 | } else {
10 | return pivotModule(jQuery);
11 | }
12 | };
13 |
14 | callWithJQuery(function($) {
15 | var c3r, d3r, frFmt, frFmtInt, frFmtPct, gcr, nf, r, tpl;
16 | nf = $.pivotUtilities.numberFormat;
17 | tpl = $.pivotUtilities.aggregatorTemplates;
18 | r = $.pivotUtilities.renderers;
19 | gcr = $.pivotUtilities.gchart_renderers;
20 | d3r = $.pivotUtilities.d3_renderers;
21 | c3r = $.pivotUtilities.c3_renderers;
22 | frFmt = nf({
23 | thousandsSep: ".",
24 | decimalSep: ","
25 | });
26 | frFmtInt = nf({
27 | digitsAfterDecimal: 0,
28 | thousandsSep: ".",
29 | decimalSep: ","
30 | });
31 | frFmtPct = nf({
32 | digitsAfterDecimal: 2,
33 | scaler: 100,
34 | suffix: "%",
35 | thousandsSep: ".",
36 | decimalSep: ","
37 | });
38 | $.pivotUtilities.locales.pt = {
39 | localeStrings: {
40 | renderError: "Ocorreu um error ao renderizar os resultados da Tabela Dinãmica.",
41 | computeError: "Ocorreu um error ao computar os resultados da Tabela Dinãmica.",
42 | uiRenderError: "Ocorreu um error ao renderizar a interface da Tabela Dinãmica.",
43 | selectAll: "Selecionar Tudo",
44 | selectNone: "Selecionar Nenhum",
45 | tooMany: "(demais para listar)",
46 | filterResults: "Filtrar resultados",
47 | totals: "Totais",
48 | vs: "vs",
49 | by: "por"
50 | },
51 | aggregators: {
52 | "Contagem": tpl.count(frFmtInt),
53 | "Contagem de Valores únicos": tpl.countUnique(frFmtInt),
54 | "Lista de Valores únicos": tpl.listUnique(", "),
55 | "Soma": tpl.sum(frFmt),
56 | "Soma de Inteiros": tpl.sum(frFmtInt),
57 | "Média": tpl.average(frFmt),
58 | "Mínimo": tpl.min(frFmt),
59 | "Máximo": tpl.max(frFmt),
60 | "Soma sobre Soma": tpl.sumOverSum(frFmt),
61 | "Limite Superior a 80%": tpl.sumOverSumBound80(true, frFmt),
62 | "Limite Inferior a 80%": tpl.sumOverSumBound80(false, frFmt),
63 | "Soma como Fração do Total": tpl.fractionOf(tpl.sum(), "total", frFmtPct),
64 | "Soma como Fração da Linha": tpl.fractionOf(tpl.sum(), "row", frFmtPct),
65 | "Soma como Fração da Coluna": tpl.fractionOf(tpl.sum(), "col", frFmtPct),
66 | "Contagem como Fração do Total": tpl.fractionOf(tpl.count(), "total", frFmtPct),
67 | "Contagem como Fração da Linha": tpl.fractionOf(tpl.count(), "row", frFmtPct),
68 | "Contagem como Fração da Coluna": tpl.fractionOf(tpl.count(), "col", frFmtPct)
69 | },
70 | renderers: {
71 | "Tabela": r["Table"],
72 | "Tabela com Barras": r["Table Barchart"],
73 | "Mapa de Calor": r["Heatmap"],
74 | "Mapa de Calor por Linhas": r["Row Heatmap"],
75 | "Mapa de Calor por Colunas": r["Col Heatmap"]
76 | }
77 | };
78 | if (gcr) {
79 | $.pivotUtilities.locales.pt.gchart_renderers = {
80 | "Gráfico de Linhas": gcr["Line Chart"],
81 | "Gráfico de Barras": gcr["Bar Chart"],
82 | "Gráfico de Barras Empilhadas": gcr["Stacked Bar Chart"],
83 | "Gráfico de Área": gcr["Area Chart"]
84 | };
85 | }
86 | if (d3r) {
87 | $.pivotUtilities.locales.pt.d3_renderers = {
88 | "Mapa de Árvore": d3r["Treemap"]
89 | };
90 | }
91 | if (c3r) {
92 | $.pivotUtilities.locales.pt.c3_renderers = {
93 | "Gráfico de Linhas": c3r["Line Chart"],
94 | "Gráfico de Barras": c3r["Bar Chart"],
95 | "Gráfico de Barras Empilhadas": c3r["Stacked Bar Chart"],
96 | "Gráfico de Área": c3r["Area Chart"]
97 | };
98 | }
99 | return $.pivotUtilities.locales.pt;
100 | });
101 |
102 | }).call(this);
103 |
104 | //# sourceMappingURL=pivot.pt.js.map
--------------------------------------------------------------------------------
/public/dist/pivot.pt.min.js:
--------------------------------------------------------------------------------
1 | (function(){var e;(e=function(e){return"object"==typeof exports&&"object"==typeof module?e(require("jquery")):"function"==typeof define&&define.amd?define(["jquery"],e):e(jQuery)})(function(e){var a,r,o,t,i,s,n,l,c;return n=e.pivotUtilities.numberFormat,c=e.pivotUtilities.aggregatorTemplates,l=e.pivotUtilities.renderers,s=e.pivotUtilities.gchart_renderers,r=e.pivotUtilities.d3_renderers,a=e.pivotUtilities.c3_renderers,o=n({thousandsSep:".",decimalSep:","}),t=n({digitsAfterDecimal:0,thousandsSep:".",decimalSep:","}),i=n({digitsAfterDecimal:2,scaler:100,suffix:"%",thousandsSep:".",decimalSep:","}),e.pivotUtilities.locales.pt={localeStrings:{renderError:"Ocorreu um error ao renderizar os resultados da Tabela Dinãmica.",computeError:"Ocorreu um error ao computar os resultados da Tabela Dinãmica.",uiRenderError:"Ocorreu um error ao renderizar a interface da Tabela Dinãmica.",selectAll:"Selecionar Tudo",selectNone:"Selecionar Nenhum",tooMany:"(demais para listar)",filterResults:"Filtrar resultados",totals:"Totais",vs:"vs",by:"por"},aggregators:{Contagem:c.count(t),"Contagem de Valores únicos":c.countUnique(t),"Lista de Valores únicos":c.listUnique(", "),Soma:c.sum(o),"Soma de Inteiros":c.sum(t),"Média":c.average(o),"Mínimo":c.min(o),"Máximo":c.max(o),"Soma sobre Soma":c.sumOverSum(o),"Limite Superior a 80%":c.sumOverSumBound80(!0,o),"Limite Inferior a 80%":c.sumOverSumBound80(!1,o),"Soma como Fração do Total":c.fractionOf(c.sum(),"total",i),"Soma como Fração da Linha":c.fractionOf(c.sum(),"row",i),"Soma como Fração da Coluna":c.fractionOf(c.sum(),"col",i),"Contagem como Fração do Total":c.fractionOf(c.count(),"total",i),"Contagem como Fração da Linha":c.fractionOf(c.count(),"row",i),"Contagem como Fração da Coluna":c.fractionOf(c.count(),"col",i)},renderers:{Tabela:l.Table,"Tabela com Barras":l["Table Barchart"],"Mapa de Calor":l.Heatmap,"Mapa de Calor por Linhas":l["Row Heatmap"],"Mapa de Calor por Colunas":l["Col Heatmap"]}},s&&(e.pivotUtilities.locales.pt.gchart_renderers={"Gráfico de Linhas":s["Line Chart"],"Gráfico de Barras":s["Bar Chart"],"Gráfico de Barras Empilhadas":s["Stacked Bar Chart"],"Gráfico de Área":s["Area Chart"]}),r&&(e.pivotUtilities.locales.pt.d3_renderers={"Mapa de Árvore":r.Treemap}),a&&(e.pivotUtilities.locales.pt.c3_renderers={"Gráfico de Linhas":a["Line Chart"],"Gráfico de Barras":a["Bar Chart"],"Gráfico de Barras Empilhadas":a["Stacked Bar Chart"],"Gráfico de Área":a["Area Chart"]}),e.pivotUtilities.locales.pt})}).call(this);
2 | //# sourceMappingURL=pivot.pt.min.js.map
--------------------------------------------------------------------------------
/public/dist/pivot.ru.js:
--------------------------------------------------------------------------------
1 | (function() {
2 | var callWithJQuery;
3 |
4 | callWithJQuery = function(pivotModule) {
5 | if (typeof exports === "object" && typeof module === "object") {
6 | return pivotModule(require("jquery"));
7 | } else if (typeof define === "function" && define.amd) {
8 | return define(["jquery"], pivotModule);
9 | } else {
10 | return pivotModule(jQuery);
11 | }
12 | };
13 |
14 | callWithJQuery(function($) {
15 | var frFmt, frFmtInt, frFmtPct, nf, tpl;
16 | nf = $.pivotUtilities.numberFormat;
17 | tpl = $.pivotUtilities.aggregatorTemplates;
18 | frFmt = nf({
19 | thousandsSep: " ",
20 | decimalSep: ","
21 | });
22 | frFmtInt = nf({
23 | digitsAfterDecimal: 0,
24 | thousandsSep: " ",
25 | decimalSep: ","
26 | });
27 | frFmtPct = nf({
28 | digitsAfterDecimal: 1,
29 | scaler: 100,
30 | suffix: "%",
31 | thousandsSep: " ",
32 | decimalSep: ","
33 | });
34 | return $.pivotUtilities.locales.ru = {
35 | localeStrings: {
36 | renderError: "Ошибка рендеринга страницы.",
37 | computeError: "Ошибка табличных расчетов.",
38 | uiRenderError: "Ошибка во время прорисовки и динамического расчета таблицы.",
39 | selectAll: "Выбрать все",
40 | selectNone: "Снять выделение",
41 | tooMany: "(Выбрано слишком много значений)",
42 | filterResults: "Возможные значения",
43 | totals: "Всего",
44 | vs: "на",
45 | by: "с"
46 | },
47 | aggregators: {
48 | "Кол-во": tpl.count(frFmtInt),
49 | "Кол-во уникальных": tpl.countUnique(frFmtInt),
50 | "Список уникальных": tpl.listUnique(", "),
51 | "Сумма": tpl.sum(frFmt),
52 | "Сумма целых": tpl.sum(frFmtInt),
53 | "Среднее": tpl.average(frFmt),
54 | "Минимум": tpl.min(frFmt),
55 | "Максимум": tpl.max(frFmt),
56 | "Сумма по сумме": tpl.sumOverSum(frFmt),
57 | "80% верхней границы": tpl.sumOverSumBound80(true, frFmt),
58 | "80% нижней границы": tpl.sumOverSumBound80(false, frFmt),
59 | "Доля по всему": tpl.fractionOf(tpl.sum(), "total", frFmtPct),
60 | "Доля по строке": tpl.fractionOf(tpl.sum(), "row", frFmtPct),
61 | "Доля по столбцу": tpl.fractionOf(tpl.sum(), "col", frFmtPct),
62 | "Кол-во по всему": tpl.fractionOf(tpl.count(), "total", frFmtPct),
63 | "Кол-во по строке": tpl.fractionOf(tpl.count(), "row", frFmtPct),
64 | "Кол-во по столбцу": tpl.fractionOf(tpl.count(), "col", frFmtPct)
65 | },
66 | renderers: {
67 | "Таблица": $.pivotUtilities.renderers["Table"],
68 | "График столбцы": $.pivotUtilities.renderers["Table Barchart"],
69 | "Тепловая карта": $.pivotUtilities.renderers["Heatmap"],
70 | "Тепловая карта по строке": $.pivotUtilities.renderers["Row Heatmap"],
71 | "Тепловая карта по столбцу": $.pivotUtilities.renderers["Col Heatmap"]
72 | }
73 | };
74 | });
75 |
76 | }).call(this);
77 |
78 | //# sourceMappingURL=pivot.ru.js.map
--------------------------------------------------------------------------------
/public/dist/pivot.ru.js.map:
--------------------------------------------------------------------------------
1 | {"version":3,"sources":["pivot.ru.coffee"],"names":[],"mappings":"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","file":"pivot.ru.js","sourceRoot":"/source/","sourcesContent":["callWithJQuery = (pivotModule) ->\n if typeof exports is \"object\" and typeof module is \"object\" # CommonJS\n pivotModule require(\"jquery\")\n else if typeof define is \"function\" and define.amd # AMD\n define [\"jquery\"], pivotModule\n # Plain browser env\n else\n pivotModule jQuery\n \ncallWithJQuery ($) ->\n nf = $.pivotUtilities.numberFormat\n tpl = $.pivotUtilities.aggregatorTemplates\n\n frFmt = nf(thousandsSep: \" \", decimalSep: \",\")\n frFmtInt = nf(digitsAfterDecimal: 0, thousandsSep: \" \", decimalSep: \",\")\n frFmtPct = nf(digitsAfterDecimal: 1, scaler: 100, suffix: \"%\", thousandsSep: \" \", decimalSep: \",\")\n\n $.pivotUtilities.locales.ru = \n localeStrings:\n renderError: \"Ошибка рендеринга страницы.\",\n computeError: \"Ошибка табличных расчетов.\",\n uiRenderError: \"Ошибка во время прорисовки и динамического расчета таблицы.\",\n selectAll: \"Выбрать все\",\n selectNone: \"Снять выделение\",\n tooMany: \"(Выбрано слишком много значений)\",\n filterResults: \"Возможные значения\",\n totals: \"Всего\",\n vs: \"на\",\n by: \"с\"\n\n aggregators: \n \"Кол-во\": tpl.count(frFmtInt),\n \"Кол-во уникальных\": tpl.countUnique(frFmtInt),\n \"Список уникальных\": tpl.listUnique(\", \"),\n \"Сумма\": tpl.sum(frFmt),\n \"Сумма целых\": tpl.sum(frFmtInt),\n \"Среднее\": tpl.average(frFmt),\n \"Минимум\": tpl.min(frFmt),\n \"Максимум\": tpl.max(frFmt),\n \"Сумма по сумме\": tpl.sumOverSum(frFmt),\n \"80% верхней границы\": tpl.sumOverSumBound80(true, frFmt),\n \"80% нижней границы\": tpl.sumOverSumBound80(false, frFmt),\n \"Доля по всему\": tpl.fractionOf(tpl.sum(), \"total\", frFmtPct),\n \"Доля по строке\": tpl.fractionOf(tpl.sum(), \"row\", frFmtPct),\n \"Доля по столбцу\": tpl.fractionOf(tpl.sum(), \"col\", frFmtPct),\n \"Кол-во по всему\": tpl.fractionOf(tpl.count(), \"total\", frFmtPct),\n \"Кол-во по строке\": tpl.fractionOf(tpl.count(), \"row\", frFmtPct),\n \"Кол-во по столбцу\": tpl.fractionOf(tpl.count(), \"col\", frFmtPct)\n\n renderers:\n \"Таблица\": $.pivotUtilities.renderers[\"Table\"]\n \"График столбцы\": $.pivotUtilities.renderers[\"Table Barchart\"] # TODO придумать более понятный вариант\n \"Тепловая карта\": $.pivotUtilities.renderers[\"Heatmap\"]\n \"Тепловая карта по строке\": $.pivotUtilities.renderers[\"Row Heatmap\"]\n \"Тепловая карта по столбцу\": $.pivotUtilities.renderers[\"Col Heatmap\"]\n\n"]}
--------------------------------------------------------------------------------
/public/dist/pivot.ru.min.js:
--------------------------------------------------------------------------------
1 | (function(){var e;(e=function(e){return"object"==typeof exports&&"object"==typeof module?e(require("jquery")):"function"==typeof define&&define.amd?define(["jquery"],e):e(jQuery)})(function(e){var t,r,i,o,s;return o=e.pivotUtilities.numberFormat,s=e.pivotUtilities.aggregatorTemplates,t=o({thousandsSep:" ",decimalSep:","}),r=o({digitsAfterDecimal:0,thousandsSep:" ",decimalSep:","}),i=o({digitsAfterDecimal:1,scaler:100,suffix:"%",thousandsSep:" ",decimalSep:","}),e.pivotUtilities.locales.ru={localeStrings:{renderError:"Ошибка рендеринга страницы.",computeError:"Ошибка табличных расчетов.",uiRenderError:"Ошибка во время прорисовки и динамического расчета таблицы.",selectAll:"Выбрать все",selectNone:"Снять выделение",tooMany:"(Выбрано слишком много значений)",filterResults:"Возможные значения",totals:"Всего",vs:"на",by:"с"},aggregators:{"Кол-во":s.count(r),"Кол-во уникальных":s.countUnique(r),"Список уникальных":s.listUnique(", "),"Сумма":s.sum(t),"Сумма целых":s.sum(r),"Среднее":s.average(t),"Минимум":s.min(t),"Максимум":s.max(t),"Сумма по сумме":s.sumOverSum(t),"80% верхней границы":s.sumOverSumBound80(!0,t),"80% нижней границы":s.sumOverSumBound80(!1,t),"Доля по всему":s.fractionOf(s.sum(),"total",i),"Доля по строке":s.fractionOf(s.sum(),"row",i),"Доля по столбцу":s.fractionOf(s.sum(),"col",i),"Кол-во по всему":s.fractionOf(s.count(),"total",i),"Кол-во по строке":s.fractionOf(s.count(),"row",i),"Кол-во по столбцу":s.fractionOf(s.count(),"col",i)},renderers:{"Таблица":e.pivotUtilities.renderers.Table,"График столбцы":e.pivotUtilities.renderers["Table Barchart"],"Тепловая карта":e.pivotUtilities.renderers.Heatmap,"Тепловая карта по строке":e.pivotUtilities.renderers["Row Heatmap"],"Тепловая карта по столбцу":e.pivotUtilities.renderers["Col Heatmap"]}}})}).call(this);
2 | //# sourceMappingURL=pivot.ru.min.js.map
--------------------------------------------------------------------------------
/public/dist/pivot.ru.min.js.map:
--------------------------------------------------------------------------------
1 | {"version":3,"sources":["/source/pivot.ru.coffee","pivot.ru.min.js"],"names":["callWithJQuery","pivotModule","exports","module","require","define","amd","jQuery","$","frFmt","frFmtInt","frFmtPct","nf","tpl","pivotUtilities","numberFormat","aggregatorTemplates","thousandsSep","decimalSep","digitsAfterDecimal","scaler","suffix","locales","ru","localeStrings","renderError","computeError","uiRenderError","selectAll","selectNone","tooMany","filterResults","totals","vs","by","aggregators","Кол-во","count","Кол-во уникальных","countUnique","Список уникальных","listUnique","Сумма","sum","Сумма целых","Среднее","average","Минимум","min","Максимум","max","Сумма по сумме","sumOverSum","80% верхней границы","sumOverSumBound80","80% нижней границы","Доля по всему","fractionOf","Доля по строке","Доля по столбцу","Кол-во по всему","Кол-во по строке","Кол-во по столбцу","renderers","Таблица","График столбцы","Тепловая карта","Тепловая карта по строке","Тепловая карта по столбцу","call","this"],"mappings":"CAAA,WAAA,GAAAA,IAAAA,EAAiB,SAACC,GACd,MAAqB,gBAAlBC,UAAgD,gBAAjBC,QAC9BF,EAAYG,QAAQ,WACC,kBAAjBC,SAAgCA,OAAOC,IAC3CD,QAAQ,UAAWJ,GAGnBA,EAAYM,UAEL,SAACC,GACZ,GAAAC,GAAAC,EAAAC,EAAAC,EAAAC,CCuBA,ODvBAD,GAAKJ,EAAEM,eAAeC,aACtBF,EAAML,EAAEM,eAAeE,oBAEvBP,EAAWG,GAAGK,aAAc,IAAKC,WAAY,MAC7CR,EAAWE,GAAGO,mBAAoB,EAAGF,aAAc,IAAKC,WAAY,MACpEP,EAAWC,GAAGO,mBAAoB,EAAGC,OAAQ,IAAKC,OAAQ,IAAKJ,aAAc,IAAKC,WAAY,MAE9FV,EAAEM,eAAeQ,QAAQC,IACrBC,eACIC,YAAa,8BACbC,aAAc,6BACdC,cAAe,8DACfC,UAAW,cACXC,WAAY,kBACZC,QAAS,mCACTC,cAAe,qBACfC,OAAQ,QACRC,GAAI,KACJC,GAAI,KAERC,aACIC,SAAUvB,EAAIwB,MAAM3B,GACpB4B,oBAAqBzB,EAAI0B,YAAY7B,GACrC8B,oBAAqB3B,EAAI4B,WAAW,MACpCC,QAAS7B,EAAI8B,IAAIlC,GACjBmC,cAAe/B,EAAI8B,IAAIjC,GACvBmC,UAAWhC,EAAIiC,QAAQrC,GACvBsC,UAAWlC,EAAImC,IAAIvC,GACnBwC,WAAYpC,EAAIqC,IAAIzC,GACpB0C,iBAAkBtC,EAAIuC,WAAW3C,GACjC4C,sBAAuBxC,EAAIyC,mBAAkB,EAAM7C,GACnD8C,qBAAsB1C,EAAIyC,mBAAkB,EAAO7C,GACnD+C,gBAAiB3C,EAAI4C,WAAW5C,EAAI8B,MAAO,QAAShC,GACpD+C,iBAAkB7C,EAAI4C,WAAW5C,EAAI8B,MAAO,MAAOhC,GACnDgD,kBAAmB9C,EAAI4C,WAAW5C,EAAI8B,MAAO,MAAOhC,GACpDiD,kBAAmB/C,EAAI4C,WAAW5C,EAAIwB,QAAS,QAAS1B,GACxDkD,mBAAoBhD,EAAI4C,WAAW5C,EAAIwB,QAAS,MAAO1B,GACvDmD,oBAAqBjD,EAAI4C,WAAW5C,EAAIwB,QAAS,MAAO1B,IAE5DoD,WACIC,UAAWxD,EAAEM,eAAeiD,UAAU,MACtCE,iBAAkBzD,EAAEM,eAAeiD,UAAU,kBAC7CG,iBAAkB1D,EAAEM,eAAeiD,UAAU,QAC7CI,2BAA4B3D,EAAEM,eAAeiD,UAAU,eACvDK,4BAA6B5D,EAAEM,eAAeiD,UAAU,qBCqBjEM,KAAKC","file":"pivot.ru.min.js","sourcesContent":["callWithJQuery = (pivotModule) ->\n if typeof exports is \"object\" and typeof module is \"object\" # CommonJS\n pivotModule require(\"jquery\")\n else if typeof define is \"function\" and define.amd # AMD\n define [\"jquery\"], pivotModule\n # Plain browser env\n else\n pivotModule jQuery\n \ncallWithJQuery ($) ->\n nf = $.pivotUtilities.numberFormat\n tpl = $.pivotUtilities.aggregatorTemplates\n\n frFmt = nf(thousandsSep: \" \", decimalSep: \",\")\n frFmtInt = nf(digitsAfterDecimal: 0, thousandsSep: \" \", decimalSep: \",\")\n frFmtPct = nf(digitsAfterDecimal: 1, scaler: 100, suffix: \"%\", thousandsSep: \" \", decimalSep: \",\")\n\n $.pivotUtilities.locales.ru = \n localeStrings:\n renderError: \"Ошибка рендеринга страницы.\",\n computeError: \"Ошибка табличных расчетов.\",\n uiRenderError: \"Ошибка во время прорисовки и динамического расчета таблицы.\",\n selectAll: \"Выбрать все\",\n selectNone: \"Снять выделение\",\n tooMany: \"(Выбрано слишком много значений)\",\n filterResults: \"Возможные значения\",\n totals: \"Всего\",\n vs: \"на\",\n by: \"с\"\n\n aggregators: \n \"Кол-во\": tpl.count(frFmtInt),\n \"Кол-во уникальных\": tpl.countUnique(frFmtInt),\n \"Список уникальных\": tpl.listUnique(\", \"),\n \"Сумма\": tpl.sum(frFmt),\n \"Сумма целых\": tpl.sum(frFmtInt),\n \"Среднее\": tpl.average(frFmt),\n \"Минимум\": tpl.min(frFmt),\n \"Максимум\": tpl.max(frFmt),\n \"Сумма по сумме\": tpl.sumOverSum(frFmt),\n \"80% верхней границы\": tpl.sumOverSumBound80(true, frFmt),\n \"80% нижней границы\": tpl.sumOverSumBound80(false, frFmt),\n \"Доля по всему\": tpl.fractionOf(tpl.sum(), \"total\", frFmtPct),\n \"Доля по строке\": tpl.fractionOf(tpl.sum(), \"row\", frFmtPct),\n \"Доля по столбцу\": tpl.fractionOf(tpl.sum(), \"col\", frFmtPct),\n \"Кол-во по всему\": tpl.fractionOf(tpl.count(), \"total\", frFmtPct),\n \"Кол-во по строке\": tpl.fractionOf(tpl.count(), \"row\", frFmtPct),\n \"Кол-во по столбцу\": tpl.fractionOf(tpl.count(), \"col\", frFmtPct)\n\n renderers:\n \"Таблица\": $.pivotUtilities.renderers[\"Table\"]\n \"График столбцы\": $.pivotUtilities.renderers[\"Table Barchart\"] # TODO придумать более понятный вариант\n \"Тепловая карта\": $.pivotUtilities.renderers[\"Heatmap\"]\n \"Тепловая карта по строке\": $.pivotUtilities.renderers[\"Row Heatmap\"]\n \"Тепловая карта по столбцу\": $.pivotUtilities.renderers[\"Col Heatmap\"]\n\n","(function(){var e;(e=function(e){return\"object\"==typeof exports&&\"object\"==typeof module?e(require(\"jquery\")):\"function\"==typeof define&&define.amd?define([\"jquery\"],e):e(jQuery)})(function(e){var t,r,i,o,s;return o=e.pivotUtilities.numberFormat,s=e.pivotUtilities.aggregatorTemplates,t=o({thousandsSep:\" \",decimalSep:\",\"}),r=o({digitsAfterDecimal:0,thousandsSep:\" \",decimalSep:\",\"}),i=o({digitsAfterDecimal:1,scaler:100,suffix:\"%\",thousandsSep:\" \",decimalSep:\",\"}),e.pivotUtilities.locales.ru={localeStrings:{renderError:\"Ошибка рендеринга страницы.\",computeError:\"Ошибка табличных расчетов.\",uiRenderError:\"Ошибка во время прорисовки и динамического расчета таблицы.\",selectAll:\"Выбрать все\",selectNone:\"Снять выделение\",tooMany:\"(Выбрано слишком много значений)\",filterResults:\"Возможные значения\",totals:\"Всего\",vs:\"на\",by:\"с\"},aggregators:{\"Кол-во\":s.count(r),\"Кол-во уникальных\":s.countUnique(r),\"Список уникальных\":s.listUnique(\", \"),\"Сумма\":s.sum(t),\"Сумма целых\":s.sum(r),\"Среднее\":s.average(t),\"Минимум\":s.min(t),\"Максимум\":s.max(t),\"Сумма по сумме\":s.sumOverSum(t),\"80% верхней границы\":s.sumOverSumBound80(!0,t),\"80% нижней границы\":s.sumOverSumBound80(!1,t),\"Доля по всему\":s.fractionOf(s.sum(),\"total\",i),\"Доля по строке\":s.fractionOf(s.sum(),\"row\",i),\"Доля по столбцу\":s.fractionOf(s.sum(),\"col\",i),\"Кол-во по всему\":s.fractionOf(s.count(),\"total\",i),\"Кол-во по строке\":s.fractionOf(s.count(),\"row\",i),\"Кол-во по столбцу\":s.fractionOf(s.count(),\"col\",i)},renderers:{\"Таблица\":e.pivotUtilities.renderers.Table,\"График столбцы\":e.pivotUtilities.renderers[\"Table Barchart\"],\"Тепловая карта\":e.pivotUtilities.renderers.Heatmap,\"Тепловая карта по строке\":e.pivotUtilities.renderers[\"Row Heatmap\"],\"Тепловая карта по столбцу\":e.pivotUtilities.renderers[\"Col Heatmap\"]}}})}).call(this);\n//# sourceMappingURL=pivot.ru.min.js.map"],"sourceRoot":"/source/"}
--------------------------------------------------------------------------------
/public/dist/pivot.tr.js:
--------------------------------------------------------------------------------
1 | (function() {
2 | var callWithJQuery;
3 |
4 | callWithJQuery = function(pivotModule) {
5 | if (typeof exports === "object" && typeof module === "object") {
6 | return pivotModule(require("jquery"));
7 | } else if (typeof define === "function" && define.amd) {
8 | return define(["jquery"], pivotModule);
9 | } else {
10 | return pivotModule(jQuery);
11 | }
12 | };
13 |
14 | callWithJQuery(function($) {
15 | var c3r, d3r, frFmt, frFmtInt, frFmtPct, gcr, nf, r, tpl;
16 | nf = $.pivotUtilities.numberFormat;
17 | tpl = $.pivotUtilities.aggregatorTemplates;
18 | r = $.pivotUtilities.renderers;
19 | gcr = $.pivotUtilities.gchart_renderers;
20 | d3r = $.pivotUtilities.d3_renderers;
21 | c3r = $.pivotUtilities.c3_renderers;
22 | frFmt = nf({
23 | thousandsSep: ".",
24 | decimalSep: ","
25 | });
26 | frFmtInt = nf({
27 | digitsAfterDecimal: 0,
28 | thousandsSep: ".",
29 | decimalSep: ","
30 | });
31 | frFmtPct = nf({
32 | digitsAfterDecimal: 2,
33 | scaler: 100,
34 | suffix: "%",
35 | thousandsSep: ".",
36 | decimalSep: ","
37 | });
38 | $.pivotUtilities.locales.tr = {
39 | localeStrings: {
40 | renderError: "PivotTable sonuçlarını oluştuturken hata oluştu",
41 | computeError: "PivotTable sonuçlarını işlerken hata oluştu",
42 | uiRenderError: "PivotTable UI sonuçlarını oluştuturken hata oluştu",
43 | selectAll: "Tümünü Seç",
44 | selectNone: "Tümünü Bırak",
45 | tooMany: "(listelemek için fazla)",
46 | filterResults: "Sonuçları filtrele",
47 | totals: "Toplam",
48 | vs: "vs",
49 | by: "ile"
50 | },
51 | aggregators: {
52 | "Sayı": tpl.count(frFmtInt),
53 | "Benzersiz değerler sayısı": tpl.countUnique(frFmtInt),
54 | "Benzersiz değerler listesi": tpl.listUnique(", "),
55 | "Toplam": tpl.sum(frFmt),
56 | "Toplam (tam sayı)": tpl.sum(frFmtInt),
57 | "Ortalama": tpl.average(frFmt),
58 | "Min": tpl.min(frFmt),
59 | "Maks": tpl.max(frFmt),
60 | "Miktarların toplamı": tpl.sumOverSum(frFmt),
61 | "%80 daha yüksek": tpl.sumOverSumBound80(true, frFmt),
62 | "%80 daha düşük": tpl.sumOverSumBound80(false, frFmt),
63 | "Toplam oranı (toplam)": tpl.fractionOf(tpl.sum(), "total", frFmtPct),
64 | "Satır oranı (toplam)": tpl.fractionOf(tpl.sum(), "row", frFmtPct),
65 | "Sütunun oranı (toplam)": tpl.fractionOf(tpl.sum(), "col", frFmtPct),
66 | "Toplam oranı (sayı)": tpl.fractionOf(tpl.count(), "total", frFmtPct),
67 | "Satır oranı (sayı)": tpl.fractionOf(tpl.count(), "row", frFmtPct),
68 | "Sütunun oranı (sayı)": tpl.fractionOf(tpl.count(), "col", frFmtPct)
69 | },
70 | renderers: {
71 | "Tablo": r["Table"],
72 | "Tablo (Çubuklar)": r["Table Barchart"],
73 | "İlgi haritası": r["Heatmap"],
74 | "Satır ilgi haritası": r["Row Heatmap"],
75 | "Sütun ilgi haritası": r["Col Heatmap"]
76 | }
77 | };
78 | if (gcr) {
79 | $.pivotUtilities.locales.tr.gchart_renderers = {
80 | "Çizgi Grafiği": gcr["Line Chart"],
81 | "Bar Grafiği": gcr["Bar Chart"],
82 | "Yığılmış Çubuk Grafik ": gcr["Stacked Bar Chart"],
83 | "Alan Grafiği": gcr["Area Chart"]
84 | };
85 | }
86 | if (d3r) {
87 | $.pivotUtilities.locales.tr.d3_renderers = {
88 | "Hiyerarşik Alan Grafiği (Treemap)": d3r["Treemap"]
89 | };
90 | }
91 | if (c3r) {
92 | $.pivotUtilities.locales.tr.c3_renderers = {
93 | "Çizgi Grafiği": c3r["Line Chart"],
94 | "Bar Grafiği": c3r["Bar Chart"],
95 | "Yığılmış Çubuk Grafik ": c3r["Stacked Bar Chart"],
96 | "Alan Grafiği": c3r["Area Chart"]
97 | };
98 | }
99 | return $.pivotUtilities.locales.tr;
100 | });
101 |
102 | }).call(this);
103 |
104 | //# sourceMappingURL=pivot.tr.js.map
--------------------------------------------------------------------------------
/public/dist/pivot.tr.js.map:
--------------------------------------------------------------------------------
1 | {"version":3,"sources":["pivot.tr.coffee"],"names":[],"mappings":"AAAA;AAAA,MAAA,cAAA;;AAAA,EAAA,cAAA,GAAiB,SAAC,WAAD,GAAA;AACf,IAAA,IAAG,MAAA,CAAA,OAAA,KAAkB,QAAlB,IAA+B,MAAA,CAAA,MAAA,KAAiB,QAAnD;aACE,WAAA,CAAY,OAAA,CAAQ,QAAR,CAAZ,EADF;KAAA,MAEK,IAAG,MAAA,CAAA,MAAA,KAAiB,UAAjB,IAAgC,MAAM,CAAC,GAA1C;aACH,MAAA,CAAO,CAAC,QAAD,CAAP,EAAmB,WAAnB,EADG;KAAA,MAAA;aAIH,WAAA,CAAY,MAAZ,EAJG;KAHU;EAAA,CAAjB,CAAA;;AAAA,EASA,cAAA,CAAe,SAAC,CAAD,GAAA;AACb,QAAA,oDAAA;AAAA,IAAA,EAAA,GAAK,CAAC,CAAC,cAAc,CAAC,YAAtB,CAAA;AAAA,IACA,GAAA,GAAM,CAAC,CAAC,cAAc,CAAC,mBADvB,CAAA;AAAA,IAEA,CAAA,GAAI,CAAC,CAAC,cAAc,CAAC,SAFrB,CAAA;AAAA,IAGA,GAAA,GAAM,CAAC,CAAC,cAAc,CAAC,gBAHvB,CAAA;AAAA,IAIA,GAAA,GAAM,CAAC,CAAC,cAAc,CAAC,YAJvB,CAAA;AAAA,IAKA,GAAA,GAAM,CAAC,CAAC,cAAc,CAAC,YALvB,CAAA;AAAA,IAOA,KAAA,GAAQ,EAAA,CAAG;AAAA,MAAA,YAAA,EAAc,GAAd;AAAA,MAAmB,UAAA,EAAY,GAA/B;KAAH,CAPR,CAAA;AAAA,IAQA,QAAA,GAAW,EAAA,CAAG;AAAA,MAAA,kBAAA,EAAoB,CAApB;AAAA,MAAuB,YAAA,EAAc,GAArC;AAAA,MAA0C,UAAA,EAAY,GAAtD;KAAH,CARX,CAAA;AAAA,IASA,QAAA,GAAW,EAAA,CAAG;AAAA,MAAA,kBAAA,EAAoB,CAApB;AAAA,MAAuB,MAAA,EAAQ,GAA/B;AAAA,MAAoC,MAAA,EAAQ,GAA5C;AAAA,MAAiD,YAAA,EAAc,GAA/D;AAAA,MAAoE,UAAA,EAAY,GAAhF;KAAH,CATX,CAAA;AAAA,IAWA,CAAC,CAAC,cAAc,CAAC,OAAO,CAAC,EAAzB,GAEE;AAAA,MAAA,aAAA,EACE;AAAA,QAAA,WAAA,EAAa,iDAAb;AAAA,QACA,YAAA,EAAc,6CADd;AAAA,QAEA,aAAA,EAAe,oDAFf;AAAA,QAGA,SAAA,EAAW,YAHX;AAAA,QAIA,UAAA,EAAY,cAJZ;AAAA,QAKA,OAAA,EAAS,yBALT;AAAA,QAMA,aAAA,EAAe,oBANf;AAAA,QAOA,MAAA,EAAQ,QAPR;AAAA,QAQA,EAAA,EAAI,IARJ;AAAA,QASA,EAAA,EAAI,KATJ;OADF;AAAA,MAYA,WAAA,EACE;AAAA,QAAA,MAAA,EAAQ,GAAG,CAAC,KAAJ,CAAU,QAAV,CAAR;AAAA,QACA,2BAAA,EAA6B,GAAG,CAAC,WAAJ,CAAgB,QAAhB,CAD7B;AAAA,QAEA,4BAAA,EAA8B,GAAG,CAAC,UAAJ,CAAe,IAAf,CAF9B;AAAA,QAGA,QAAA,EAAU,GAAG,CAAC,GAAJ,CAAQ,KAAR,CAHV;AAAA,QAIA,mBAAA,EAAqB,GAAG,CAAC,GAAJ,CAAQ,QAAR,CAJrB;AAAA,QAKA,UAAA,EAAY,GAAG,CAAC,OAAJ,CAAY,KAAZ,CALZ;AAAA,QAMA,KAAA,EAAO,GAAG,CAAC,GAAJ,CAAQ,KAAR,CANP;AAAA,QAOA,MAAA,EAAQ,GAAG,CAAC,GAAJ,CAAQ,KAAR,CAPR;AAAA,QAQA,qBAAA,EAAuB,GAAG,CAAC,UAAJ,CAAe,KAAf,CARvB;AAAA,QASA,iBAAA,EAAmB,GAAG,CAAC,iBAAJ,CAAsB,IAAtB,EAA4B,KAA5B,CATnB;AAAA,QAUA,gBAAA,EAAkB,GAAG,CAAC,iBAAJ,CAAsB,KAAtB,EAA6B,KAA7B,CAVlB;AAAA,QAWA,uBAAA,EAAyB,GAAG,CAAC,UAAJ,CAAe,GAAG,CAAC,GAAJ,CAAA,CAAf,EAA0B,OAA1B,EAAmC,QAAnC,CAXzB;AAAA,QAYA,sBAAA,EAAwB,GAAG,CAAC,UAAJ,CAAe,GAAG,CAAC,GAAJ,CAAA,CAAf,EAA0B,KAA1B,EAAiC,QAAjC,CAZxB;AAAA,QAaA,wBAAA,EAA0B,GAAG,CAAC,UAAJ,CAAe,GAAG,CAAC,GAAJ,CAAA,CAAf,EAA0B,KAA1B,EAAiC,QAAjC,CAb1B;AAAA,QAcA,qBAAA,EAAuB,GAAG,CAAC,UAAJ,CAAe,GAAG,CAAC,KAAJ,CAAA,CAAf,EAA4B,OAA5B,EAAqC,QAArC,CAdvB;AAAA,QAeA,oBAAA,EAAsB,GAAG,CAAC,UAAJ,CAAe,GAAG,CAAC,KAAJ,CAAA,CAAf,EAA4B,KAA5B,EAAmC,QAAnC,CAftB;AAAA,QAgBA,sBAAA,EAAwB,GAAG,CAAC,UAAJ,CAAe,GAAG,CAAC,KAAJ,CAAA,CAAf,EAA4B,KAA5B,EAAmC,QAAnC,CAhBxB;OAbF;AAAA,MA+BA,SAAA,EACE;AAAA,QAAA,OAAA,EAAS,CAAE,CAAA,OAAA,CAAX;AAAA,QACA,kBAAA,EAAoB,CAAE,CAAA,gBAAA,CADtB;AAAA,QAEA,eAAA,EAAiB,CAAE,CAAA,SAAA,CAFnB;AAAA,QAGA,qBAAA,EAAuB,CAAE,CAAA,aAAA,CAHzB;AAAA,QAIA,qBAAA,EAAuB,CAAE,CAAA,aAAA,CAJzB;OAhCF;KAbF,CAAA;AAkDA,IAAA,IAAG,GAAH;AACE,MAAA,CAAC,CAAC,cAAc,CAAC,OAAO,CAAC,EAAE,CAAC,gBAA5B,GACE;AAAA,QAAA,eAAA,EAAiB,GAAI,CAAA,YAAA,CAArB;AAAA,QACA,aAAA,EAAe,GAAI,CAAA,WAAA,CADnB;AAAA,QAEA,wBAAA,EAA0B,GAAI,CAAA,mBAAA,CAF9B;AAAA,QAGA,cAAA,EAAgB,GAAI,CAAA,YAAA,CAHpB;OADF,CADF;KAlDA;AAyDA,IAAA,IAAG,GAAH;AACE,MAAA,CAAC,CAAC,cAAc,CAAC,OAAO,CAAC,EAAE,CAAC,YAA5B,GACE;AAAA,QAAA,mCAAA,EAAqC,GAAI,CAAA,SAAA,CAAzC;OADF,CADF;KAzDA;AA6DA,IAAA,IAAG,GAAH;AACE,MAAA,CAAC,CAAC,cAAc,CAAC,OAAO,CAAC,EAAE,CAAC,YAA5B,GACE;AAAA,QAAA,eAAA,EAAiB,GAAI,CAAA,YAAA,CAArB;AAAA,QACA,aAAA,EAAe,GAAI,CAAA,WAAA,CADnB;AAAA,QAEA,wBAAA,EAA0B,GAAI,CAAA,mBAAA,CAF9B;AAAA,QAGA,cAAA,EAAgB,GAAI,CAAA,YAAA,CAHpB;OADF,CADF;KA7DA;AAoEA,WAAO,CAAC,CAAC,cAAc,CAAC,OAAO,CAAC,EAAhC,CArEa;EAAA,CAAf,CATA,CAAA;AAAA","file":"pivot.tr.js","sourceRoot":"/source/","sourcesContent":["callWithJQuery = (pivotModule) ->\n if typeof exports is \"object\" and typeof module is \"object\" # CommonJS\n pivotModule require(\"jquery\")\n else if typeof define is \"function\" and define.amd # AMD\n define [\"jquery\"], pivotModule\n# Plain browser env\n else\n pivotModule jQuery\n\ncallWithJQuery ($) ->\n nf = $.pivotUtilities.numberFormat\n tpl = $.pivotUtilities.aggregatorTemplates\n r = $.pivotUtilities.renderers\n gcr = $.pivotUtilities.gchart_renderers\n d3r = $.pivotUtilities.d3_renderers\n c3r = $.pivotUtilities.c3_renderers\n\n frFmt = nf(thousandsSep: \".\", decimalSep: \",\")\n frFmtInt = nf(digitsAfterDecimal: 0, thousandsSep: \".\", decimalSep: \",\")\n frFmtPct = nf(digitsAfterDecimal: 2, scaler: 100, suffix: \"%\", thousandsSep: \".\", decimalSep: \",\")\n\n $.pivotUtilities.locales.tr =\n\n localeStrings:\n renderError: \"PivotTable sonuçlarını oluştuturken hata oluştu\"\n computeError: \"PivotTable sonuçlarını işlerken hata oluştu\"\n uiRenderError: \"PivotTable UI sonuçlarını oluştuturken hata oluştu\"\n selectAll: \"Tümünü Seç\"\n selectNone: \"Tümünü Bırak\"\n tooMany: \"(listelemek için fazla)\"\n filterResults: \"Sonuçları filtrele\"\n totals: \"Toplam\"\n vs: \"vs\"\n by: \"ile\"\n\n aggregators:\n \"Sayı\": tpl.count(frFmtInt)\n \"Benzersiz değerler sayısı\": tpl.countUnique(frFmtInt)\n \"Benzersiz değerler listesi\": tpl.listUnique(\", \")\n \"Toplam\": tpl.sum(frFmt)\n \"Toplam (tam sayı)\": tpl.sum(frFmtInt)\n \"Ortalama\": tpl.average(frFmt)\n \"Min\": tpl.min(frFmt)\n \"Maks\": tpl.max(frFmt)\n \"Miktarların toplamı\": tpl.sumOverSum(frFmt)\n \"%80 daha yüksek\": tpl.sumOverSumBound80(true, frFmt)\n \"%80 daha düşük\": tpl.sumOverSumBound80(false, frFmt)\n \"Toplam oranı (toplam)\": tpl.fractionOf(tpl.sum(), \"total\", frFmtPct)\n \"Satır oranı (toplam)\": tpl.fractionOf(tpl.sum(), \"row\", frFmtPct)\n \"Sütunun oranı (toplam)\": tpl.fractionOf(tpl.sum(), \"col\", frFmtPct)\n \"Toplam oranı (sayı)\": tpl.fractionOf(tpl.count(), \"total\", frFmtPct)\n \"Satır oranı (sayı)\": tpl.fractionOf(tpl.count(), \"row\", frFmtPct)\n \"Sütunun oranı (sayı)\": tpl.fractionOf(tpl.count(), \"col\", frFmtPct)\n\n renderers:\n \"Tablo\": r[\"Table\"]\n \"Tablo (Çubuklar)\": r[\"Table Barchart\"]\n \"İlgi haritası\": r[\"Heatmap\"]\n \"Satır ilgi haritası\": r[\"Row Heatmap\"]\n \"Sütun ilgi haritası\": r[\"Col Heatmap\"]\n if gcr\n $.pivotUtilities.locales.tr.gchart_renderers =\n \"Çizgi Grafiği\": gcr[\"Line Chart\"]\n \"Bar Grafiği\": gcr[\"Bar Chart\"]\n \"Yığılmış Çubuk Grafik \": gcr[\"Stacked Bar Chart\"]\n \"Alan Grafiği\": gcr[\"Area Chart\"]\n\n if d3r\n $.pivotUtilities.locales.tr.d3_renderers =\n \"Hiyerarşik Alan Grafiği (Treemap)\": d3r[\"Treemap\"]\n\n if c3r\n $.pivotUtilities.locales.tr.c3_renderers =\n \"Çizgi Grafiği\": c3r[\"Line Chart\"]\n \"Bar Grafiği\": c3r[\"Bar Chart\"]\n \"Yığılmış Çubuk Grafik \": c3r[\"Stacked Bar Chart\"]\n \"Alan Grafiği\": c3r[\"Area Chart\"]\n\n return $.pivotUtilities.locales.tr\n\n"]}
--------------------------------------------------------------------------------
/public/dist/pivot.tr.min.js:
--------------------------------------------------------------------------------
1 | (function(){var a;(a=function(a){return"object"==typeof exports&&"object"==typeof module?a(require("jquery")):"function"==typeof define&&define.amd?define(["jquery"],a):a(jQuery)})(function(a){var e,r,t,i,l,o,n,s,u;return n=a.pivotUtilities.numberFormat,u=a.pivotUtilities.aggregatorTemplates,s=a.pivotUtilities.renderers,o=a.pivotUtilities.gchart_renderers,r=a.pivotUtilities.d3_renderers,e=a.pivotUtilities.c3_renderers,t=n({thousandsSep:".",decimalSep:","}),i=n({digitsAfterDecimal:0,thousandsSep:".",decimalSep:","}),l=n({digitsAfterDecimal:2,scaler:100,suffix:"%",thousandsSep:".",decimalSep:","}),a.pivotUtilities.locales.tr={localeStrings:{renderError:"PivotTable sonuçlarını oluştuturken hata oluştu",computeError:"PivotTable sonuçlarını işlerken hata oluştu",uiRenderError:"PivotTable UI sonuçlarını oluştuturken hata oluştu",selectAll:"Tümünü Seç",selectNone:"Tümünü Bırak",tooMany:"(listelemek için fazla)",filterResults:"Sonuçları filtrele",totals:"Toplam",vs:"vs",by:"ile"},aggregators:{"Sayı":u.count(i),"Benzersiz değerler sayısı":u.countUnique(i),"Benzersiz değerler listesi":u.listUnique(", "),Toplam:u.sum(t),"Toplam (tam sayı)":u.sum(i),Ortalama:u.average(t),Min:u.min(t),Maks:u.max(t),"Miktarların toplamı":u.sumOverSum(t),"%80 daha yüksek":u.sumOverSumBound80(!0,t),"%80 daha düşük":u.sumOverSumBound80(!1,t),"Toplam oranı (toplam)":u.fractionOf(u.sum(),"total",l),"Satır oranı (toplam)":u.fractionOf(u.sum(),"row",l),"Sütunun oranı (toplam)":u.fractionOf(u.sum(),"col",l),"Toplam oranı (sayı)":u.fractionOf(u.count(),"total",l),"Satır oranı (sayı)":u.fractionOf(u.count(),"row",l),"Sütunun oranı (sayı)":u.fractionOf(u.count(),"col",l)},renderers:{Tablo:s.Table,"Tablo (Çubuklar)":s["Table Barchart"],"İlgi haritası":s.Heatmap,"Satır ilgi haritası":s["Row Heatmap"],"Sütun ilgi haritası":s["Col Heatmap"]}},o&&(a.pivotUtilities.locales.tr.gchart_renderers={"Çizgi Grafiği":o["Line Chart"],"Bar Grafiği":o["Bar Chart"],"Yığılmış Çubuk Grafik ":o["Stacked Bar Chart"],"Alan Grafiği":o["Area Chart"]}),r&&(a.pivotUtilities.locales.tr.d3_renderers={"Hiyerarşik Alan Grafiği (Treemap)":r.Treemap}),e&&(a.pivotUtilities.locales.tr.c3_renderers={"Çizgi Grafiği":e["Line Chart"],"Bar Grafiği":e["Bar Chart"],"Yığılmış Çubuk Grafik ":e["Stacked Bar Chart"],"Alan Grafiği":e["Area Chart"]}),a.pivotUtilities.locales.tr})}).call(this);
2 | //# sourceMappingURL=pivot.tr.min.js.map
--------------------------------------------------------------------------------
/public/dist/pivot.zh.js:
--------------------------------------------------------------------------------
1 | (function() {
2 | var callWithJQuery;
3 |
4 | callWithJQuery = function(pivotModule) {
5 | if (typeof exports === "object" && typeof module === "object") {
6 | return pivotModule(require("jquery"));
7 | } else if (typeof define === "function" && define.amd) {
8 | return define(["jquery"], pivotModule);
9 | } else {
10 | return pivotModule(jQuery);
11 | }
12 | };
13 |
14 | callWithJQuery(function($) {
15 | var c3r, d3r, frFmt, frFmtInt, frFmtPct, gcr, nf, r, tpl;
16 | nf = $.pivotUtilities.numberFormat;
17 | tpl = $.pivotUtilities.aggregatorTemplates;
18 | r = $.pivotUtilities.renderers;
19 | gcr = $.pivotUtilities.gchart_renderers;
20 | d3r = $.pivotUtilities.d3_renderers;
21 | c3r = $.pivotUtilities.c3_renderers;
22 | frFmt = nf({
23 | thousandsSep: ",",
24 | decimalSep: "."
25 | });
26 | frFmtInt = nf({
27 | digitsAfterDecimal: 0,
28 | thousandsSep: ",",
29 | decimalSep: "."
30 | });
31 | frFmtPct = nf({
32 | digitsAfterDecimal: 2,
33 | scaler: 100,
34 | suffix: "%",
35 | thousandsSep: ",",
36 | decimalSep: "."
37 | });
38 | $.pivotUtilities.locales.zh = {
39 | localeStrings: {
40 | renderError: "展示结果时出错。",
41 | computeError: "计算结果时出错。",
42 | uiRenderError: "展示界面时出错。",
43 | selectAll: "选择全部",
44 | selectNone: "全部不选",
45 | tooMany: "(因数据过多而无法列出)",
46 | filterResults: "输入值帮助筛选",
47 | totals: "合计",
48 | vs: "于",
49 | by: "分组于"
50 | },
51 | aggregators: {
52 | "频数": tpl.count(frFmtInt),
53 | "非重复值的个数": tpl.countUnique(frFmtInt),
54 | "列出非重复值": tpl.listUnique(", "),
55 | "求和": tpl.sum(frFmt),
56 | "求和后取整": tpl.sum(frFmtInt),
57 | "平均值": tpl.average(frFmt),
58 | "最小值": tpl.min(frFmt),
59 | "最大值": tpl.max(frFmt),
60 | "两和之比": tpl.sumOverSum(frFmt),
61 | "二项分布:置信度为80%时的区间上限": tpl.sumOverSumBound80(true, frFmt),
62 | "二项分布:置信度为80%时的区间下限": tpl.sumOverSumBound80(false, frFmt),
63 | "和在总计中的比例": tpl.fractionOf(tpl.sum(), "total", frFmtPct),
64 | "和在行合计中的比例": tpl.fractionOf(tpl.sum(), "row", frFmtPct),
65 | "和在列合计中的比例": tpl.fractionOf(tpl.sum(), "col", frFmtPct),
66 | "频数在总计中的比例": tpl.fractionOf(tpl.count(), "total", frFmtPct),
67 | "频数在行合计中的比例": tpl.fractionOf(tpl.count(), "row", frFmtPct),
68 | "频数在列合计中的比例": tpl.fractionOf(tpl.count(), "col", frFmtPct)
69 | },
70 | renderers: {
71 | "表格": r["Table"],
72 | "表格内柱状图": r["Table Barchart"],
73 | "热图": r["Heatmap"],
74 | "行热图": r["Row Heatmap"],
75 | "列热图": r["Col Heatmap"]
76 | }
77 | };
78 | if (gcr) {
79 | $.pivotUtilities.locales.zh.gchart_renderers = {
80 | "折线图(g)": gcr["Line Chart"],
81 | "柱形图(g)": gcr["Bar Chart"],
82 | "堆栈柱形图(g)": gcr["Stacked Bar Chart"],
83 | "面积图(g)": gcr["Area Chart"]
84 | };
85 | $.pivotUtilities.locales.zh.renderers = $.extend($.pivotUtilities.locales.zh.renderers, $.pivotUtilities.locales.zh.gchart_renderers);
86 | }
87 | if (d3r) {
88 | $.pivotUtilities.locales.zh.d3_renderers = {
89 | "树图": d3r["Treemap"]
90 | };
91 | $.pivotUtilities.locales.zh.renderers = $.extend($.pivotUtilities.locales.zh.renderers, $.pivotUtilities.locales.zh.d3_renderers);
92 | }
93 | if (c3r) {
94 | $.pivotUtilities.locales.zh.c3_renderers = {
95 | "折线图": c3r["Line Chart"],
96 | "柱形图": c3r["Bar Chart"],
97 | "堆栈柱形图": c3r["Stacked Bar Chart"],
98 | "面积图": c3r["Area Chart"],
99 | "散点图": c3r["Scatter Chart"]
100 | };
101 | $.pivotUtilities.locales.zh.renderers = $.extend($.pivotUtilities.locales.zh.renderers, $.pivotUtilities.locales.zh.c3_renderers);
102 | }
103 | return $.pivotUtilities.locales.zh;
104 | });
105 |
106 | }).call(this);
107 |
108 | //# sourceMappingURL=pivot.zh.js.map
--------------------------------------------------------------------------------
/public/dist/pivot.zh.min.js:
--------------------------------------------------------------------------------
1 | (function(){var e;(e=function(e){return"object"==typeof exports&&"object"==typeof module?e(require("jquery")):"function"==typeof define&&define.amd?define(["jquery"],e):e(jQuery)})(function(e){var t,r,i,o,s,a,l,n,c;return l=e.pivotUtilities.numberFormat,c=e.pivotUtilities.aggregatorTemplates,n=e.pivotUtilities.renderers,a=e.pivotUtilities.gchart_renderers,r=e.pivotUtilities.d3_renderers,t=e.pivotUtilities.c3_renderers,i=l({thousandsSep:",",decimalSep:"."}),o=l({digitsAfterDecimal:0,thousandsSep:",",decimalSep:"."}),s=l({digitsAfterDecimal:2,scaler:100,suffix:"%",thousandsSep:",",decimalSep:"."}),e.pivotUtilities.locales.zh={localeStrings:{renderError:"展示结果时出错。",computeError:"计算结果时出错。",uiRenderError:"展示界面时出错。",selectAll:"选择全部",selectNone:"全部不选",tooMany:"(因数据过多而无法列出)",filterResults:"输入值帮助筛选",totals:"合计",vs:"于",by:"分组于"},aggregators:{"频数":c.count(o),"非重复值的个数":c.countUnique(o),"列出非重复值":c.listUnique(", "),"求和":c.sum(i),"求和后取整":c.sum(o),"平均值":c.average(i),"最小值":c.min(i),"最大值":c.max(i),"两和之比":c.sumOverSum(i),"二项分布:置信度为80%时的区间上限":c.sumOverSumBound80(!0,i),"二项分布:置信度为80%时的区间下限":c.sumOverSumBound80(!1,i),"和在总计中的比例":c.fractionOf(c.sum(),"total",s),"和在行合计中的比例":c.fractionOf(c.sum(),"row",s),"和在列合计中的比例":c.fractionOf(c.sum(),"col",s),"频数在总计中的比例":c.fractionOf(c.count(),"total",s),"频数在行合计中的比例":c.fractionOf(c.count(),"row",s),"频数在列合计中的比例":c.fractionOf(c.count(),"col",s)},renderers:{"表格":n.Table,"表格内柱状图":n["Table Barchart"],"热图":n.Heatmap,"行热图":n["Row Heatmap"],"列热图":n["Col Heatmap"]}},a&&(e.pivotUtilities.locales.zh.gchart_renderers={"折线图(g)":a["Line Chart"],"柱形图(g)":a["Bar Chart"],"堆栈柱形图(g)":a["Stacked Bar Chart"],"面积图(g)":a["Area Chart"]},e.pivotUtilities.locales.zh.renderers=e.extend(e.pivotUtilities.locales.zh.renderers,e.pivotUtilities.locales.zh.gchart_renderers)),r&&(e.pivotUtilities.locales.zh.d3_renderers={"树图":r.Treemap},e.pivotUtilities.locales.zh.renderers=e.extend(e.pivotUtilities.locales.zh.renderers,e.pivotUtilities.locales.zh.d3_renderers)),t&&(e.pivotUtilities.locales.zh.c3_renderers={"折线图":t["Line Chart"],"柱形图":t["Bar Chart"],"堆栈柱形图":t["Stacked Bar Chart"],"面积图":t["Area Chart"],"散点图":t["Scatter Chart"]},e.pivotUtilities.locales.zh.renderers=e.extend(e.pivotUtilities.locales.zh.renderers,e.pivotUtilities.locales.zh.c3_renderers)),e.pivotUtilities.locales.zh})}).call(this);
2 | //# sourceMappingURL=pivot.zh.min.js.map
--------------------------------------------------------------------------------
/public/less/main.less:
--------------------------------------------------------------------------------
1 | .container {
2 | margin-top: 30px;
3 | }
4 | // .pivotTable {
5 | // width: 100%;
6 | // display: flex;
7 | // color: #555;
8 | // font-weight: bold;
9 | // font-size: 2.5em;
10 | // }
11 |
--------------------------------------------------------------------------------
/public/templates/pivot_table.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/public/templates/pivot_table_editor.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/public/vis.js:
--------------------------------------------------------------------------------
1 | import moment from 'moment';
2 | import { uiModules } from 'ui/modules';
3 | import { VisSchemasProvider } from 'ui/vis/schemas';
4 | import { VisTypesRegistryProvider } from 'ui/registry/vis_types';
5 | import { TemplateVisTypeProvider } from 'ui/template_vis_type/template_vis_type';
6 | import visTemplate from './templates/pivot_table.html';
7 | import editorTemplate from './templates/pivot_table_editor.html';
8 |
9 | import 'ui/autoload/styles';
10 | import './less/main.less';
11 | import './controller/directive_provider.js';
12 | import './controller/tableCtrl.js';
13 | import './dist/jquery.min.js';
14 | import './dist/jquery-ui.min.js';
15 | import './dist/pivot.css';
16 | import './dist/pivot.js';
17 | import './dist/d3_renderers.js';
18 | import './dist/c3.css';
19 | import './dist/c3_renderers.js';
20 |
21 |
22 | VisTypesRegistryProvider.register(PivotTableProvider);
23 | function PivotTableProvider(Private) {
24 | const TemplateVisType = Private(TemplateVisTypeProvider);
25 | const Schemas = Private(VisSchemasProvider);
26 | return new TemplateVisType({
27 | name: 'PivotTable', // the internal id of the visualization
28 | title: 'PivotTable', // the name shown in the visualize list
29 | icon: 'fa-table', // the class of the font awesome icon for this
30 | description: 'Add a PivotTable to your dashboards.', // description shown to the user
31 | requiresSearch: true, // linked to a search
32 | template: visTemplate, // Load the template of the visualization
33 | params: {
34 | defaults: { // Set default values for paramters (that can be configured in the editor)
35 | editMode: false,
36 | config: {
37 | rows: "",
38 | cols: "",
39 | aggregatorName: "Count",
40 | vals:""
41 | },
42 | availableAggregatorOptions:[
43 | "Count",
44 | "Count Unique Values",
45 | "List Unique Values",
46 | "Sum",
47 | "Integer Sum",
48 | "Average",
49 | "Minimum",
50 | "Maximum",
51 | "First",
52 | "Last",
53 | "Sum over Sum",
54 | "80% Upper Bound",
55 | "80% Lower Bound",
56 | "Sum as Fraction of Total",
57 | "Sum as Fraction of Rows",
58 | "Sum as Fraction of Columns",
59 | "Count as Fraction of Total",
60 | "Count as Fraction of Rows",
61 | "Count as Fraction of Columns"
62 | ],
63 | },
64 | editor: editorTemplate // Use this HTML as an options editor for this vis
65 | },
66 | schemas: new Schemas([
67 | {
68 | group: 'metrics',
69 | name: 'metric',
70 | title: 'Metric',
71 | min: 1,
72 | defaults: [
73 | { type: 'count', schema: 'metric' }
74 | ],
75 | // size: 1000
76 | },
77 | {
78 | group: 'buckets',
79 | name: 'segment',
80 | title: 'Split Slices',
81 | aggFilter: '!geohash_grid',
82 | min: 1,
83 | // max: 1
84 | }
85 | ])
86 | });
87 | }
88 |
89 | export default PivotTableProvider;
90 |
--------------------------------------------------------------------------------
/release/dv_install_script.sh:
--------------------------------------------------------------------------------
1 | /usr/share/kibana/bin/kibana-plugin install YOUR-PACKAGE-DIRECTORY/pivot_table-5.1.2.zip
2 |
--------------------------------------------------------------------------------
/release/pivot_table-0.1.0.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ewvann/kibana-pivot-table/7769791455eeb6a396a6de2fec9443e6e7c5cecb/release/pivot_table-0.1.0.zip
--------------------------------------------------------------------------------
/release/pivot_table-5.1.2.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ewvann/kibana-pivot-table/7769791455eeb6a396a6de2fec9443e6e7c5cecb/release/pivot_table-5.1.2.zip
--------------------------------------------------------------------------------
/server/__tests__/index.js:
--------------------------------------------------------------------------------
1 | import { expect } from 'chai';
2 |
3 | describe('suite', () => {
4 | it('is a test test', () => {
5 | expect(true).to.equal(false);
6 | });
7 | });
8 |
--------------------------------------------------------------------------------
/server/routes/example.js:
--------------------------------------------------------------------------------
1 | export default function (server) {
2 |
3 | server.route({
4 | path: '/api/pivot_table/example',
5 | method: 'GET',
6 | handler(req, reply) {
7 | reply({ time: (new Date()).toISOString() });
8 | }
9 | });
10 |
11 | };
12 |
--------------------------------------------------------------------------------