영국 SW산업 매출현황
(단위 : 억 파운드)
var chart_83;
var chart_type_83 = "column";
jQuery(document).ready(function () {
{"data":{"data":[{"구분":"2018년","SW산업":"1297"},{"구분":"2019년","SW산업":"1356"},{"구분":"2020년","SW산업":"1464"},{"구분":"2021년","SW산업":"1634"},{"구분":"2022년","SW산업":"1929"}]},"use":{"animate":true,"aCrossLine":true,"multiYAxis":false},"animate":{"speed":100},"format":{ "yAxis": "priceDataFormat" },"func":{ "tip": function (tipElement, data, rect) { var date = data.xaxis; var tip = '
'+ String(data.yaxis)+'
'; tipElement.html(tip).show(); tipElement.html(tipElement.html()).css({ left: rect.x - (tipElement.width() / 2), top: rect.y - 38 }); } }}
var style = {
"main": {
"layout": {
"paddingTop": 57,
"paddingRight": 30,
"color": "#ffffff",
"line": {
"color": "#ffffff",
"width": 1
}
},
"graph": {
"color": "#ffffff",
"line": {
"top": {
"color": "#cccccc"
},
"left": {
"width": 0
},
"right": {
"width": 0
},
"bottom": {
"color": "#cccccc"
}
}
},
"layout": {
"color": layout_color
},
"yAxis": {
"text": {
"align": "right"
}
},
"series": {
"s1": {
"area": {
"normal": {
"color":{src:'/lib/webponent/chart/webPonent-Chart-2.0.6/chart/sample/chart/img/pattern04.png'},
"over": {
"color": {
"src": "/lib/webponent/chart/webPonent-Chart-2.0.6/chart/sample/chart/img/over.png"
}
}
}
}
},
"s2": {
"area": {
"normal": {
"color": [
[
0,
"#ff852c"
],
[
100,
"#fca86b"
]
],
"over": {
"color": {
"src": "/lib/webponent/chart/webPonent-Chart-2.0.6/chart/sample/chart/img/over.png"
}
}
}
}
},
"s3": {
"area": {
"normal": {
"color": [
[
0,
"#ffbb16"
],
[
100,
"#fcca50"
]
],
"over": {
"color": {
"src": "/lib/webponent/chart/webPonent-Chart-2.0.6/chart/sample/chart/img/over.png"
}
}
}
}
},
"s4": {
"area": {
"normal": {
"color": [
[
0,
"#d6de1d"
],
[
100,
"#e7ed5b"
]
],
"over": {
"color": {
"src": "/lib/webponent/chart/webPonent-Chart-2.0.6/chart/sample/chart/img/over.png"
}
}
}
}
},
"s5": {
"area": {
"normal": {
"color": [
[
0,
"#2bcdba"
],
[
100,
"#63e8d8"
]
],
"over": {
"color": {
"src": "/lib/webponent/chart/webPonent-Chart-2.0.6/chart/sample/chart/img/over.png"
}
}
}
}
}
}
}
};
var data_83 = data;
var style_83 = style;
var series_83 = series;
if(color_style_83 == undefined){
var color_style_83 = [];
}
if(slider_83 == undefined ){
var slider_83 =true;
}
if (chart_type_83 == "pie") {
chart_83 = webponent.visual.pie.init(jQuery('#webponent_chart_83'), style_83, data_83);
jQuery("#chart_controller").remove();
} else if (chart_type_83 == "tree") {
chart_83 = webponent.visual.treemap.init(jQuery('#webponent_chart_83'), style_83, data_83);
jQuery("#chart_controller").remove();
} else if (chart_type_83 == "horizon") {
chart_83 = webponent.visual.horizon.init(jQuery('#webponent_chart_83'), style_83, data_83);
jQuery("#chart_controller").remove();
} else if (chart_type_83 == "scatter") {
chart_83 = webponent.visual.scatterPlot.init(jQuery('#webponent_chart_83'), style_83, data_83);
jQuery("#chart_controller").remove();
} else {
if(chart_type_83 != "hloc"){
var count =0;
jQuery.each(series_83.main, function (index, value) {
if (index != "type") {
if(chart_type_83 == "line"){
legend_count = count %5;
jQuery("#chart_legends_83").append(legend_style[legend_count][0]+legend_color[count] +legend_style[legend_count][1]+ value.yaxis +'');
}else if(chart_type_83 =="multi_series"){
if(value.series=="line"){
legend_count = count %5;
jQuery("#chart_legends_83").append(legend_style[legend_count][0]+legend_color[count] +legend_style[legend_count][1]+ value.yaxis +'');
}else{
jQuery("#chart_legends_83").append('
' + value.yaxis + '');
}
}else{
if(color_style_83.length){
jQuery("#chart_legends_83").append('
' + value.yaxis + '');
}else{
jQuery("#chart_legends_83").append('
' + value.yaxis + '');
}
}
}
count++;
});
}
chart_83= webponent.chart.init(jQuery('#webponent_chart_83'), data_83, style_83, series_83);
if(slider_83){
if(chart_type_83=="line"||chart_type_83=="column"){
var tmp_x=[];
jQuery("#slider_div_83").attr("style","");
jQuery.each(data_83.data.data,function (index,value){
tmp_x.push(value[Object.keys(value)[0]]);
});
jQuery("#slider-range_83").slider({
range: true,
min: 0,
max: tmp_x.length-1,
values: [ 0, tmp_x.length-1 ],
slide: function( event, ui ) {
jQuery( "#slider-text_83" ).text( "범위 : " + tmp_x[ui.values[ 0 ]] + " - " + tmp_x[ui.values[ 1 ]] );
var tmp_data = JSON.parse(JSON.stringify(data_83)); //object 참조 복사 회피
tmp_data.data.data = tmp_data.data.data.splice(ui.values[ 0 ],ui.values[ 1 ]+1-ui.values[0]);
chart_83.inquery( tmp_data,style_83, series_83);
}
});
jQuery("#slider-text_83").text( "범위 : "+tmp_x[0] + " - " + tmp_x[tmp_x.length-1]);
}
}
}
})