我使用带有序数x轴的DC JS构建了折线图。它的工作原理,除了在x轴上有一些外部填充,我似乎无法摆脱它。我希望最左边和最右边的数据点与图表的边缘齐平,没有填充。希望我不会错过任何明显的东西。
我认为我没有错误地设置x轴刻度。给定这样的数据集:
var data = [
{ key: 'Monday', value: 3000000 },
{ key: 'Tuesday', value: 3100000 },
{ key: 'Wednesday', value: 3500000 },
{ key: 'Thursday', value: 3070000 },
{ key: 'Friday', value: 4500000 },
{ key: 'Saturday', value: 3003030 },
{ key: 'Sunday', value: 5010000 }
];
这是我用x轴刻度做的事情:
var ordinalScale = d3.scale.ordinal().domain(['Monday','Tuesday','Wednesday','Thursday','Friday','Saturday','Sunday']).rangeRoundBands([0,chartWidth]);
chart.x(ordinalScale).xUnits(dc.units.ordinal);
我还查看了序数量表上的D3文档,但这还没有帮助。
这是一个屏幕截图(外部填充标记为红色): http://imgur.com/a/zmfF4
这是一个有效的JS小提琴演示了这个问题: https://jsfiddle.net/qvp4fpzy/4/
答案 0 :(得分:0)
处理范围频段周围的dc.js和d3.js功能有点令人困惑。
dc.js有自己的条形/线x位置内置计算,但如果x标度是序数,它会自动选择.rangeBands
:
if (_chart.isOrdinal()) {
_x.rangeBands([0, _chart.xAxisLength()], _rangeBandPadding,
_chart._useOuterPadding() ? _outerRangeBandPadding : 0);
} else // ...
所以我认为你对.rangeRoundBands
的号召无效。 (dc.js应该使用rangeRoundBands
代替rangeBands
吗?也许吧,但它对此问题并不重要。)
您希望影响third parameter to rangeBands
,chart._outerRangeBandPadding()
由chart._useOuterPadding()
控制。 (忽略chart._outerRangeBandPadding(0);
- 这是向后兼容的事情。)
所以你需要的就是
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/content_roster_clock_out_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginBottom="5dp"
android:layout_marginTop="3dp"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:context=".RosterClockOutActivity"
tools:showIn="@layout/app_bar_roster_clock_out">
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="5dp"
android:layout_marginRight="5dp"
android:orientation="vertical">
<com.google.android.gms.maps.MapView
android:id="@+id/roster_clock_out_map_view"
android:layout_width="match_parent"
android:layout_height="300dp"
android:clickable="true"
android:apiKey="my api key"
android:layout_weight="1"/>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/roster_clock_out_map_view"
android:layout_marginTop="4dp"
android:layout_marginBottom="15dp"
android:alpha="0.5"
android:background="#765491"
android:orientation="vertical">
<TextView
android:id="@+id/roster_clock_out_date_text"
android:layout_width="match_parent"
android:layout_height="40dp"
android:layout_gravity="center"
android:paddingTop="7dp"
android:background="#563e6b"
android:paddingBottom="7dp"
android:text="5 th MAY 2017"
android:textAlignment="center"
android:textStyle="bold"
android:textColor="@android:color/white"
android:textSize="24sp" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:orientation="horizontal">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="START TIME"
android:textStyle="bold"
android:textAlignment="center"
android:textColor="@android:color/white"
android:textSize="14sp" />
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="END TIME"
android:textStyle="bold"
android:textAlignment="center"
android:textColor="@android:color/white"
android:textSize="14sp" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/roster_clock_out_st_time_text"
android:layout_weight="1"
android:text="08.30 AM"
android:textStyle="bold"
android:textAlignment="center"
android:textColor="@android:color/white"
android:textSize="20sp" />
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/roster_clock_out_ed_time_text"
android:layout_weight="1"
android:text="05.30 PM"
android:textStyle="bold"
android:textAlignment="center"
android:textColor="@android:color/white"
android:textSize="20sp" />
</LinearLayout>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/roster_clock_out_location_text"
android:layout_marginRight="35dp"
android:layout_marginLeft="35dp"
android:layout_marginTop="8dp"
android:drawablePadding="5dp"
android:drawableLeft="@drawable/ic_place_small"
android:textAlignment="center"
android:maxLines="3"
android:lines="3"
android:clickable="true"
android:textSize="14sp"
android:text="Australian Strategic Partnership\n#9, School Lane, Kollpity, Colombo 3"
android:textColor="@android:color/white" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="18dp"
android:orientation="horizontal">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="10dp"
android:layout_weight="1"
android:orientation="vertical">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:textSize="14sp"
android:text="CLOCK IN"
android:textStyle="bold"
android:textAlignment="center"
android:textColor="#f7f316"/>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"/>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/roster_clock_in_sign_time_text"
android:layout_weight="1"
android:textSize="18sp"
android:textStyle="bold"
android:textColor="#f7f316"
android:text="08:43 PM"
android:textAlignment="center"/>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/roster_clock_in_delayed_time_text"
android:layout_weight="1"
android:textSize="18sp"
android:textColor="@android:color/white"
android:text="04:00"
android:textStyle="bold"
android:textAlignment="center"/>
</LinearLayout>
</LinearLayout>
<android.support.v7.widget.AppCompatButton
android:id="@+id/roster_clock_out_save_btn"
style="@style/ButtonStyle"
android:layout_height="32dp"
android:background="#800080"
android:alpha="5"
android:layout_marginBottom="10dp"
android:layout_marginRight="10dp"
android:textSize="16sp"
android:textStyle="bold"
android:clickable="true"
android:layout_weight="1.5"
android:text="CLOCK OUT" />
</LinearLayout>
</LinearLayout>
</LinearLayout>
</ScrollView>
</RelativeLayout>