gpt4 book ai didi

android - SciChart TradeChartAxisLabelProvider 自定义格式显示天、月

转载 作者:行者123 更新时间:2023-11-29 18:35:08 27 4
gpt4 key购买 nike

如何自定义 X 轴以显示新的日/月/年开始的日期(或月或年,取决于所选范围)?我正在使用 CategoryDateAxis ( CreateMultiPaneStockChartsFragment example )。

我想要的:

更大的范围:

enter image description here

较小的范围(很容易看出新的一天从哪里开始):

enter image description here

我有什么:

现在我使用的是默认标签提供程序,很难看到新的日/月/年何时开始。例如。 7 天范围:

enter image description here

轴的构造如下:

final CategoryDateAxis xAxis = sciChartBuilder.newCategoryDateAxis()
.withVisibility(isMainPane ? View.VISIBLE : View.GONE)
.withVisibleRange(sharedXRange)
//.withLabelProvider(new TradeChartAxisLabelProviderDateTime())
.withGrowBy(0.01d, 0.01d)
.build();

我如何实现这一目标?

public static class TradeChartAxisLabelProviderDateTime extends TradeChartAxisLabelProvider {
public TradeChartAxisLabelProviderDateTime() {
super();
}

@Override
public String formatLabel(Comparable dataValue) {
if(currentRange == RANGE_1_YEAR) {

} else if(currentRange == RANGE_1_MONTH) {

} else if(currentRange == RANGE_1_DAY) {

}
String text = super.formatLabel(dataValue).toString();
return text;
}
}

最佳答案

要实现基于 VisibleRange 的标签选择,您可以使用如下代码:

public static class TradeChartAxisLabelProviderDateTime extends TradeChartAxisLabelProvider {
public TradeChartAxisLabelProviderDateTime() {
super(new TradeChartAxisLabelFormatterDateTime());
}

private static class TradeChartAxisLabelFormatterDateTime implements ILabelFormatter<CategoryDateAxis> {
private final SimpleDateFormat labelFormat, cursorLabelFormat;

private TradeChartAxisLabelFormatterDateTime() {
labelFormat = new SimpleDateFormat(CategoryDateAxis.DEFAULT_TEXT_FORMATTING, Locale.getDefault());
cursorLabelFormat = new SimpleDateFormat(CategoryDateAxis.DEFAULT_TEXT_FORMATTING, Locale.getDefault());
}

@Override
public void update(CategoryDateAxis axis) {
final ICategoryLabelProvider labelProvider = Guard.instanceOfAndNotNull(axis.getLabelProvider(), ICategoryLabelProvider.class);

// this is range of indices which are drawn by CategoryDateAxis
final IRange<Double> visibleRange = axis.getVisibleRange();

// convert indicies to range of dates
final DateRange dateRange = new DateRange(
ComparableUtil.toDate(labelProvider.transformIndexToData((int) NumberUtil.constrain(Math.floor(visibleRange.getMin()), 0, Integer.MAX_VALUE))),
ComparableUtil.toDate(labelProvider.transformIndexToData((int) NumberUtil.constrain(Math.ceil(visibleRange.getMax()), 0, Integer.MAX_VALUE))));

if (dateRange.getIsDefined()) {
long ticksInViewport = dateRange.getDiff().getTime();

// select formatting based on diff in time between Min and Max
if (ticksInViewport > DateIntervalUtil.fromYears(1)) {
// apply year formatting
labelFormat.applyPattern("");
cursorLabelFormat.applyPattern("");
} else if (ticksInViewport > DateIntervalUtil.fromMonths(1)) {
// apply month formatting
labelFormat.applyPattern("");
cursorLabelFormat.applyPattern("");
} else if (ticksInViewport > DateIntervalUtil.fromMonths(1)) {
// apply day formatting
labelFormat.applyPattern("");
cursorLabelFormat.applyPattern("");
}
}
}

@Override
public CharSequence formatLabel(Comparable dataValue) {
final Date valueToFormat = ComparableUtil.toDate(dataValue);
return labelFormat.format(valueToFormat);
}

@Override
public CharSequence formatCursorLabel(Comparable dataValue) {
final Date valueToFormat = ComparableUtil.toDate(dataValue);
return cursorLabelFormat.format(valueToFormat);
}
}
}

update()您可以访问轴的 VisibleRange,并根据它选择标签格式,然后使用 SimpleDateFormat 来格式化日期。

但据我了解,您的情况比这更复杂,因为您无法获得允许根据当前 VisibleRange 查看新日/月/年何时开始的标签。对于这种情况,您需要根据先前格式化的值选择格式字符串,并跟踪日/月/年的变化。

关于android - SciChart TradeChartAxisLabelProvider 自定义格式显示天、月,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54685363/

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