在Android数字编号上运行的Java Web应用程序

问题描述 投票:1回答:1

我开发了一个带有C3 js的java web应用程序来绘制图形。在C3 js工具提示中,我尝试打印一个至少4位数的数字。我在多种环境,桌面和移动设备(IOS和Android)上测试应用程序,但在Android中,工具提示中的数字只打印了3位数。

这是我用于绘制工具提示的C3 js的js代码:

tooltip: {
                              grouped: false,
                              contents: function(d, defaultTitleFormat, defaultValueFormat, color) {
                                var $$ = this, config = $$.config, titleFormat = config.tooltip_format_title || defaultTitleFormat, nameFormat = config.tooltip_format_name
                                        || function(name) {
                                          return name;
                                        }, valueFormat = config.tooltip_format_value || defaultValueFormat, text, i, title, value, name, bgcolor;

                                for (i = 0; i < d.length; i++) {
                                  if (!(d[i] && (d[i].value || d[i].value === 0))) {
                                    continue;
                                  }

                                  if (!text) {
                                    title = titleFormat ? titleFormat(d[i].x) : d[i].x;
                                    text = "<table class='" + $$.CLASS.tooltip + "'>"
                                            + (title || title === 0 ? "<tr><th colspan='2'>" + title + "</th></tr>" : "");
                                  }

                                  name = nameFormat(d[i].name);

                                  var fundName = dojo.query('#hiddenFundName')[0].value;
                                  var raiffeisenAcumulareFundName = 'raiffeisen acumulare';
                                  if (fundName.toLowerCase() == raiffeisenAcumulareFundName) {
                                    value = valueFormat(d[i].value.toLocaleString("en-US", {
                                      minimumFractionDigits: 6
                                    }), d[i].ratio, d[i].id, d[i].index);
                                  } else {
                                    value = valueFormat(d[i].value.toLocaleString("en-US", {
                                      minimumFractionDigits: 4
                                    }), d[i].ratio, d[i].id, d[i].index);
                                  }
                                  bgcolor = $$.levelColor ? $$.levelColor(d[i].value) : color(d[i].id);
                                  var initialNAV = dojo.attr(query("#initialnavPU")[0], "value");
                                  text += "<tr class='" + $$.CLASS.tooltipName + "-" + d[i].id + "'>";
                                  text += "<td class='value'>" + '<h5>' + titleFormat(d[i].x) + '</h5>' + '<h5>Valoarea unitatii de fond: ' + value
                                          + '</h5>' + '<h5>Randament: ' + ((d[i].value / initialNAV - 1) * 100).toFixed(2) + '%' + '</h5></td>';
                                  text += "</tr>";
                                }

                                return text + "</table>";
                              }
                            }

你知道我的号码为什么不尊重我要打印的小数位数吗?请记住,它只是在Android操作系统上。

javascript java android c3.js
1个回答
1
投票

尝试为工具提示添加格式选项:

tooltip: {
    format: {
        value: function (value) {
            return d3.format('.4f')(value);
        }
    },
    ...
    // your current options
}
© www.soinside.com 2019 - 2024. All rights reserved.