SwiftCharts切断点(剪辑边界)

时间:2017-11-10 21:54:54

标签: swiftcharts

我正在调整SwiftCharts的Areas Example项目,我遇到了点指标被切断的问题:

enter image description here

在github中发布一个问题chartSettings.clipInnerFrame = falsethis问题解决方案设置server { listen 80; listen [::]:80; server_name name ip; root /var/www/html/phpmyadmin; index index.php; location / { try_files $uri $uri/ =404; } location ~ ^/(.*\.php)$ { fastcgi_pass unix:/run/php/php7.0-fpm.sock; fastcgi_param SCRIPT_FILENAME $request_filename; include /etc/nginx/fastcgi_params; } location ~ \.php$ { try_files $uri =404; fastcgi_index index.php; fastcgi_pass unix:/run/php/php7.0-fpm.sock; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include /etc/nginx/fastcgi_params; } location ~ /\.ht { deny all; } }

然而,当我这样做时,区域颜色笨拙的形状也变得可见:

this other

如何才能获得积分的整体形状,而不是所有其他东西?

1 个答案:

答案 0 :(得分:1)

您必须使用积分ChartPointsViewsLayer传递给clipViews: false(请参阅example)。 ChartSettings.clipInnerFrame必须为真(即默认值)。这样只会剪切带有点的图层。

最后,如果要剪切未剪切的点图层(以限制显示它们的图表之外的区域),可以通过自定义矩形进行传递,例如here(此设置肯定不是非常直观)。