我正在使用Flot图表,当我在xaxis中有许多标签时,信息会被截断。
我该怎么做?我读了一些关于xaxis 1.1.0-preview3-final
属性的内容,但这不起作用。当我使用此属性时,图表中没有任何变化。
labelAngle: 45
答案 0 :(得分:0)
默认情况下,Flot不支持旋转标签。您需要定义一些自定义CSS(例如此answer)或使用插件,例如tickrotor(使用try
{
JSONObject result = new JSONObject(resultResponse);
String kind = result.getString("kind");
JSONArray items_arr=result.getJSONArray("items");
for(int i=0;i<items_arr.length();i++)
{
JSONObject obj=items_arr.getJSONObject(i);
JSONObject volumeInfo_obj=obj.getJSONObject("volumeInfo");
String bookName=volumeInfo_obj.getString("title");
JSONArray volumeInfo_arr=volumeInfo_obj.getJSONArray("authors");
String authorName=volumeInfo_arr.getString(0);
String publicationDate=volumeInfo_obj.getString("publishedDate");
bookList.add(new Book(bookName, authorName, publicationDate));
}
BookAdapter bookAdapter = new BookAdapter(this, bookList);
listView.setAdapter(bookAdapter);
} catch (JSONException e) {
Constants.dismiss_progress_dialog();
e.printStackTrace();
}
属性而不是xaxis.rotateTicks
)。