mirror of
https://github.com/XCharts-Team/XCharts.git
synced 2026-05-24 09:50:15 +00:00
3.12.1
This commit is contained in:
@@ -6,6 +6,7 @@ slug: /changelog
|
||||
# Changelog
|
||||
|
||||
[master](#master)
|
||||
[v3.12.1](#v3121)
|
||||
[v3.12.0](#v3120)
|
||||
[v3.11.2](#v3112)
|
||||
[v3.11.1](#v3111)
|
||||
@@ -76,6 +77,28 @@ slug: /changelog
|
||||
|
||||
## master
|
||||
|
||||
## v3.12.1
|
||||
|
||||
Version Highlights:
|
||||
|
||||
* Enhanced Chinese and English support for the official website documentation.
|
||||
* Optimized the rendering performance of line charts when data points are densely packed.
|
||||
* Other issue fixes.
|
||||
|
||||
Log Details:
|
||||
|
||||
* (2024.12.01) Released `v3.12.1` version.
|
||||
* (2024.11.30) Fixed an issue where the `Tooltip` displayed incorrectly on mobile devices when setting other anchors in charts.
|
||||
* (2024.11.27) Resolved some code warning issues in `Unity6`.
|
||||
* (2024.11.26) Fixed a problem where the `Tooltip` might exceed the screen and appear incomplete under specific circumstances.
|
||||
* (2024.11.24) Fixed an issue where `UITable` would also select items during dragging.
|
||||
* (2024.11.22) Fixed an abnormal effect issue when dynamically changing the `Time` timeline with `Animation` enabled.
|
||||
* (2024.11.18) Optimized `Line` rendering for better performance when data points are densely packed.
|
||||
* (2024.11.16) Fixed an issue where `Animation` could not be enabled through code (#334).
|
||||
* (2024.11.13) Fixed a problem where dynamically modifying the `start` and `end` of `DataZoom` through code did not refresh the chart.
|
||||
* (2024.11.05) Fixed an issue where the `Title` remained visible after being set to hidden.
|
||||
* (2024.11.01) Improved `website` documentation in both English and Chinese.
|
||||
|
||||
## v3.12.0
|
||||
|
||||
Version Highlights:
|
||||
|
||||
@@ -6,6 +6,7 @@ slug: /changelog
|
||||
# 更新日志
|
||||
|
||||
[master](#master)
|
||||
[v3.12.1](#v3121)
|
||||
[v3.12.0](#v3120)
|
||||
[v3.11.2](#v3112)
|
||||
[v3.11.1](#v3111)
|
||||
@@ -77,6 +78,17 @@ slug: /changelog
|
||||
|
||||
## master
|
||||
|
||||
## v3.12.1
|
||||
|
||||
版本要点:
|
||||
|
||||
* 完善官网文档的中英文支持
|
||||
* 优化折线图数据密集时的绘制效果
|
||||
* 其他问题修复
|
||||
|
||||
日志详情:
|
||||
|
||||
* (2024.12.01) 发布`v3.12.1`版本
|
||||
* (2024.11.30) 修复`Tooltip`在图表设置其他锚点时手机上显示位置异常的问题
|
||||
* (2024.11.27) 修复`Unity6`的一些代码警告问题
|
||||
* (2024.11.26) 修复`Tooltip`在特殊情况下可能会超出屏幕显示不完整的问题
|
||||
|
||||
@@ -21,8 +21,8 @@ namespace XCharts.Runtime
|
||||
[ExecuteInEditMode]
|
||||
public static class XChartsMgr
|
||||
{
|
||||
public static readonly string version = "3.12.0";
|
||||
public static readonly int versionDate = 20240930;
|
||||
public static readonly string version = "3.12.1";
|
||||
public static readonly int versionDate = 20241201;
|
||||
public static string fullVersion { get { return version + "-" + versionDate; } }
|
||||
|
||||
internal static List<BaseChart> chartList = new List<BaseChart>();
|
||||
|
||||
@@ -3,9 +3,9 @@
|
||||
"displayName": "XCharts",
|
||||
"author": "monitor1394",
|
||||
"license": "MIT",
|
||||
"version": "3.12.0",
|
||||
"date": "20240930",
|
||||
"checkdate": "20240930",
|
||||
"version": "3.12.1",
|
||||
"date": "20241201",
|
||||
"checkdate": "20241201",
|
||||
"unity": "2018.3",
|
||||
"description": "A charting and data visualization library for Unity. Support line chart, bar chart, pie chart, radar chart, scatter chart, heatmap chart, ring chart, candlestick chart, polar chart and parallel coordinates.",
|
||||
"keywords": [
|
||||
|
||||
Reference in New Issue
Block a user