This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <script type="text/javascript"> | |
| // code omitted for brevity | |
| tableObject = $("#" + dataTableName).DataTable({ | |
| "ajax" : { | |
| type : "POST" | |
| , url : _url | |
| , dataSrc : "data" | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <script type="text/javascript"> | |
| // code omitted for brevity | |
| options = { | |
| // code omitted for brevity | |
| plotOptions: { | |
| bar: { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <script type="text/javascript"> | |
| // code omitted for brevity | |
| var dataArray = []; | |
| var categoryNm = []; | |
| <c:forEach var="list" items="${abilityList}"> | |
| var applyStdAvgAbilityInfo = '${applyStdAvgAbilityInfo[list.cdId.toLowerCase()]}'; | |
| dataArray.push(applyStdAvgAbilityInfo); | |
| categoryNm.push("${list.cdNm}"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <script type="text/javascript"> | |
| $(document).ready(function() { | |
| $(".apexcharts-canvas").css({"text-align": "center", "margin": "auto"}); | |
| }); | |
| // code omitted for brevity | |
| </script> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <script type="text/javascript"> | |
| // code omitted for brevity | |
| function drawStatChart() { | |
| var options = { | |
| // code omitted for brevity | |
| , plotOptions: { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <script type="text/javascript"> | |
| // code omitted for brevity | |
| <c:forEach var="list" items="${applyStudentStateList}" varStatus="status"> | |
| var nmDataArry = []; | |
| var perDataArry = []; | |
| nmDataArry.push('${applyStdStateList.genFgNm}'); | |
| if ('${status.index}' == 1) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <script type="text/javascript"> | |
| // code omitted for brevity | |
| function drawStatChart() { | |
| var options = { | |
| chart : { | |
| height : 250 | |
| , type : 'bar' | |
| , stacked : true |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <script type="text/javascript"> | |
| // code omitted for brevity | |
| var options = { | |
| series : seriesData | |
| , chart : { | |
| type : 'bar' | |
| , height : 150 | |
| , stacked : false |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ApexCharts.js - xaxis labels가 길 경우 default로 45도 각도로 배치가 되는데, 너무 길면 labels의 뒷 부분이 '...' 으로 표시되며 짤림 | |
| // 아래와 같이 xaxis의 labels 옵션으로 trim 값을 false로 주면 labels 모두 표시됨 | |
| // 더 많은 옵션 확인은 https://apexcharts.com/docs/options/xaxis/ | |
| <script type="text/javascript"> | |
| function drawBarChart() { | |
| var codeNameArray = []; | |
| var codeCountArray = []; | |
| <c:forEach items="${statisticsDataList}" var="list"> | |
| codeNameArray.push("${list.codeName}"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| SELECT | |
| NUMBER_DATA | |
| , TO_CHAR(NVL(NUMBER_TABLE.NUMBER_DATA, 0), '90.00') AS FIXED_DECIMAL_POINT1 | |
| , TO_CHAR(NVL(NUMBER_TABLE.NUMBER_DATA, 0), '90.99') AS FIXED_DECIMAL_POINT2 | |
| , TO_CHAR(NVL(NUMBER_TABLE.NUMBER_DATA, 0), '99.00') AS FIXED_DECIMAL_POINT3 | |
| , TO_CHAR(NVL(NUMBER_TABLE.NUMBER_DATA, 0), 'FM900.00') AS FIXED_DECIMAL_POINT4 | |
| , TO_CHAR(NVL(NUMBER_TABLE.NUMBER_DATA, 0), '999,999,990.00') AS FIXED_DECIMAL_POINT5 | |
| , TO_CHAR(NVL(NUMBER_TABLE.NUMBER_DATA, 0), 'FM999,999,990.00') AS FIXED_DECIMAL_POINT6 | |
| , TO_CHAR(NVL(NUMBER_TABLE.NUMBER_DATA, 0), 'FM999,999,990.90') AS FIXED_DECIMAL_POINT7 | |
| , TO_CHAR(NVL(NUMBER_TABLE.NUMBER_DATA, 0), 'FM999,999,990.99') AS FIXED_DECIMAL_POINT8 |
NewerOlder