gpt4 book ai didi

javascript - 将 JSON 对象数组转换为字符串数组以与 C3.js 图表库一起使用

转载 作者:行者123 更新时间:2023-11-28 00:54:49 28 4
gpt4 key购买 nike

我目前正在进行一个个人项目,其中涉及创建一个小型网站,以使用 LastFM API 显示我的音乐收听习惯的统计数据。

我正在尝试使用 C3.js ( http://c3js.org/ ) 创建一个简单的条形图,它将显示我最常收听的 10 位艺术家的播放次数。

下面是函数的 JSFiddle,它创建条形图并显示我遇到的问题:

http://jsfiddle.net/decodedcreative/pr18wkz6/

var lastfm = {};

lastfm.tracker = (function(){

//Set up an object for DOM elements and data source
var config = {
getMostPopularArtistsURL: "http://ws.audioscrobbler.com/2.0/?method=user.gettopartists&user=jimmersjukebox&api_key=6db1989bd348bf91797bad802c6645d8&format=json",
user: "jimmersjukebox",
};


var setupLastFM = function(){
createPopularArtistsChart();
};


var createPopularArtistsChart = function(){
$.getJSON(config.getMostPopularArtistsURL,function(data){
var artistData = data.topartists.artist,
artists = $.map(artistData, function(artist) {
return [[artist.name]];
}),

playcounts = $.map(artistData, function(playcount) {
return [[playcount.playcount]];
});

playcountsArray = playcounts.slice(0,10);
artistsArray = artists.slice(0,10);


var popularArtists = c3.generate({
bindto: '#popularArtists',
data: {
x: 'x',
columns: [
['playcount', playcountsArray],
['x', artistsArray]
],
axes: {
data: 'artists' // ADD
},
types: {
playcount: 'bar'
}
},
axis: {
x: {
type: 'category'
},
}
});


});
};

return{
config: config,
init: function(){
setupLastFM();
}
};
})();
$(window).load(lastfm.tracker.init);
/*-- Chart --*/

.c3 svg {
font: 10px sans-serif;
}
.c3 path, .c3 line {
fill: none;
stroke: #000;
}
.c3 text {
-webkit-user-select: none;
-moz-user-select: none;
user-select: none;
}

.c3-legend-item-tile,
.c3-xgrid-focus,
.c3-ygrid,
.c3-event-rect,
.c3-bars path {
shape-rendering: crispEdges;
}

.c3-chart-arc path {
stroke: #fff;

}
.c3-chart-arc text {
fill: #fff;
font-size: 13px;
}

/*-- Axis --*/

.c3-axis-x .tick {
}
.c3-axis-x-label {
}

.c3-axis-y .tick {
}
.c3-axis-y-label {
}

.c3-axis-y2 .tick {
}
.c3-axis-y2-label {
}

/*-- Grid --*/

.c3-grid line {
stroke: #aaa;
}
.c3-grid text {
fill: #aaa;
}
.c3-xgrid, .c3-ygrid {
stroke-dasharray: 3 3;
}
.c3-xgrid-focus {
}

/*-- Text on Chart --*/

.c3-text {
}

.c3-text.c3-empty {
fill: #808080;
font-size: 2em;
}

/*-- Line --*/

.c3-line {
stroke-width: 1px;
}
/*-- Point --*/

.c3-circle._expanded_ {
stroke-width: 1px;
stroke: white;
}
.c3-selected-circle {
fill: white;
stroke-width: 2px;
}

/*-- Bar --*/

.c3-bar {
stroke-width: 0;
}
.c3-bar._expanded_ {
fill-opacity: 0.75;
}

/*-- Arc --*/

.c3-chart-arcs-title {
font-size: 1.3em;
}

/*-- Focus --*/

.c3-target.c3-focused path.c3-line, .c3-target.c3-focused path.c3-step {
stroke-width: 2px;
}

/*-- Region --*/

.c3-region {
fill: steelblue;
fill-opacity: .1;
}

/*-- Brush --*/

.c3-brush .extent {
fill-opacity: .1;
}

/*-- Select - Drag --*/

.c3-dragarea {
}

/*-- Legend --*/

.c3-legend-item {
font-size: 12px;
}

.c3-legend-background {
opacity: 0.75;
fill: white;
stroke: lightgray;
stroke-width: 1
}

/*-- Tooltip --*/

.c3-tooltip {
border-collapse:collapse;
border-spacing:0;
background-color:#fff;
empty-cells:show;
-webkit-box-shadow: 7px 7px 12px -9px rgb(119,119,119);
-moz-box-shadow: 7px 7px 12px -9px rgb(119,119,119);
box-shadow: 7px 7px 12px -9px rgb(119,119,119);
opacity: 0.9;
}
.c3-tooltip tr {
border:1px solid #CCC;
}
.c3-tooltip th {
background-color: #aaa;
font-size:14px;
padding:2px 5px;
text-align:left;
color:#FFF;
}
.c3-tooltip td {
font-size:13px;
padding: 3px 6px;
background-color:#fff;
border-left:1px dotted #999;
}
.c3-tooltip td > span {
display: inline-block;
width: 10px;
height: 10px;
margin-right: 6px;
}
.c3-tooltip td.value{
text-align: right;
}

.c3-area {
stroke-width: 0;
opacity: 0.2;
}

.c3-chart-arcs .c3-chart-arcs-background {
fill: #e0e0e0;
stroke: none;
}
.c3-chart-arcs .c3-chart-arcs-gauge-unit {
fill: #000;
font-size: 16px;
}
.c3-chart-arcs .c3-chart-arcs-gauge-max {
fill: #777;
}
.c3-chart-arcs .c3-chart-arcs-gauge-min {
fill: #777;
}

.c3-chart-arc .c3-gauge-value {
fill: #000;
font-size: 28px;
}
<script src="//cdnjs.cloudflare.com/ajax/libs/c3/0.3.0/c3.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.4.11/d3.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div class="container">
<div class="chart-container">
<div id="popularArtists"></div>
</div>
</div>

条形图当前未按预期呈现。我相信这是因为用于 x 轴上的标签和条形高度本身的数据数组是 JSON 对象数组而不是字符串数组。

如果有人知道如何将 JSON 对象数组转换为字符串数组,或者可以给出一个使用 C3 和 JSON 数据的示例,那就太好了。

谢谢

詹姆斯

最佳答案

Updated JSFiddle here.

我也遇到了同样的问题!问题在于,您实际上是在使用嵌套数组来尝试填充图形,而 C3(也可能是 D3?)不喜欢这样 - - 它只需要一个没有子数组的数组。 artistsArray 已经是一个数组,并且列声明 ['data1', artsArray] 也是一个数组,如括号所示,因此变为 ['data1 ', [3,5,4]]。您的数据点成为声明中的第二个数组,而 C3 不知道如何处理它。

为了解决这个问题,您创建 playcountsArrayartistsArray 需要一个额外的步骤:

// Create the initial array of our datapoints.
playcountsArray = playcounts.slice(0,10);
artistsArray = artists.slice(0,10);

// Add the name of the column to the front of the array.
playcountsArray.unshift('playcount');
artistsArray.unshift('x');

现在,您不再使用包含所有数据点和类别且没有列名称的数组 ([3, 5, 4]),而是将列名称放在前面,就像正常的 C3 列声明需要 (['data1', 3, 5, 4])。然后,在图形创建中,您只需传入数组:

columns: [
playcountsArray,
artistsArray
],

请注意,我们没有像通常那样将各个列声明括在括号中。我们只是传递数组的名称。如果我们确实使用了括号,我们基本上会说 [['x', 3, 5, 4]],将我们的数组嵌套在另一个数组中,正如我们现在所知,C3 会咀嚼该数组我们出去吧,哈哈。

关于javascript - 将 JSON 对象数组转换为字符串数组以与 C3.js 图表库一起使用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26340758/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com