首页 \ 问答 \ 任何Forge API都可以告诉我创建该文件的软件版本(Are any of the Forge APIs able to tell me the version of the software that created that created file)

任何Forge API都可以告诉我创建该文件的软件版本(Are any of the Forge APIs able to tell me the version of the software that created that created file)

如果我上传Revit文件,任何API都可以告诉我它是用哪个版本创建的? dwg,3ds和其他文件一样。 谢谢


If I upload a Revit file can any API tell me what version it was created with? Same for dwg, 3ds and any other file. Thanks


原文:https://stackoverflow.com/questions/49141340
更新时间:2023-08-21 06:08

最满意答案

对我来说非常好用。 看到这个小提琴

您确定要将此设置为正确的设置网址:

../js/c3.min.js

D3是关闭CDN但你的C3不在本地路径上,所以检查路径是否正在解析(在浏览器中打开开发人员工具并检查错误)。

在小提琴我也包括c3.css,我注意到你的代码没有。


Works perfectly well for me. See this fiddle.

Are you sure you're setting this to the correct url for your setup:

../js/c3.min.js

The D3 is off a CDN but your C3 is off a local path, so check that path is resolving (open Developer Tools in your browser & check for errors).

In the fiddle I also included the c3.css, which I notice your code hasn't got.

相关问答

更多
  • 这完全没问题。 我基于C3.js网站上的Category Axis示例 。 $(document).ready(function() { var mammoReconstructionsAcceptedChart = c3.generate({ bindto: '#mammo_reconstructions_accepted', data: { columns: [ ['data1', 30, 200, 100, 400, 150, 250] ...
  • 对我来说非常好用。 看到这个小提琴 。 您确定要将此设置为正确的设置网址: ../js/c3.min.js D3是关闭CDN但你的C3不在本地路径上,所以检查路径是否正在解析(在浏览器中打开开发人员工具并检查错误)。 在小提琴我也包括c3.css,我注意到你的代码没有。 Works perfectly well for me. See this fiddle. Are you sure you're setting this to the correct url for your setup: ../js ...
  • 升级到最新版本或解决此处解决的一些解决方法https://github.com/wkhtmltopdf/wkhtmltopdf/issues/1964似乎已解决此问题。 Upgrade to the latest version or there are a few workarounds explained here https://github.com/wkhtmltopdf/wkhtmltopdf/issues/1964 which appear to have resolved this issue ...
  • 我认为你的代码中的问题是你使用静态函数来返回连接而你的构造函数不会分配给你的私有变量 私有$连接的第一个解决方案: class DBConnection { private $connection; function __construct(){ $this->connection = $this->open_connection(); } public static function open_connection(){ try { $connection = new PDO( ...
  • 从文档看来,您可以添加一个axis.x.padding设置,如下所示: axis: { x: { padding: { left: 0, right: 0, } } } 这里是一个小提琴: http : //jsfiddle.net/cnp4de61/ (代码顶部附近的填充内容显然是为了页面内的整个图表)。 From the docs, it looks like you can add an axis.x.padding setting, like so: ...
  • 你的小提琴中有两个问题: 问题1: data: { columns: [ ['electricity plants', elec_plants], ['CHP plants', chp_planrs], ['Unallocated autoproducers / Other energy industry own use', auto_pro], ['Other', other_elec], ...
  • 这是因为您的数据具有重复的x值,并且相应的y值上升然后下降。 就像是 F => ['F', .... 4, 4, 4, ...]; T => ['T', .... 21, 23, 22, ...]; 如果希望线条连续,则可以在F(X)值相等时对T值进行排序。 就像是 // construct an array of arrays - each element contains the T values for an F value var groupedT = []; T.forEach(functi ...
  • 您可以使用选项填充>右键,就像这样 var chart = c3.generate({ padding: { right: 20 }, data: { ... 来自http://c3js.org/reference.html#padding-right的文档 padding.right 图表右侧的填充。 默认值:未定义 You can use the option padding > right, like so var chart = c3.generat ...
  • 你可以在这里找到一个例子。 var chart = c3.generate({ data: { columns: [ ['bulls', 30], ['lakers', 50], ], type : 'donut', }, donut: { width: 100 } }) 小提琴: http : //jsfiddle.net/ktjhh5qr/2/ You can find an example here. var chart = c3.gene ...
  • 最简单的语法是这样的: chart.tooltip.show({x: 5}); jsFiddle演示 这是你想要的吗? The simpliest syntax is this: chart.tooltip.show({x: 5}); jsFiddle demo Is this is what you want?

相关文章

更多

最新问答

更多
  • 获取MVC 4使用的DisplayMode后缀(Get the DisplayMode Suffix being used by MVC 4)
  • 如何通过引用返回对象?(How is returning an object by reference possible?)
  • 矩阵如何存储在内存中?(How are matrices stored in memory?)
  • 每个请求的Java新会话?(Java New Session For Each Request?)
  • css:浮动div中重叠的标题h1(css: overlapping headlines h1 in floated divs)
  • 无论图像如何,Caffe预测同一类(Caffe predicts same class regardless of image)
  • xcode语法颜色编码解释?(xcode syntax color coding explained?)
  • 在Access 2010 Runtime中使用Office 2000校对工具(Use Office 2000 proofing tools in Access 2010 Runtime)
  • 从单独的Web主机将图像传输到服务器上(Getting images onto server from separate web host)
  • 从旧版本复制文件并保留它们(旧/新版本)(Copy a file from old revision and keep both of them (old / new revision))
  • 西安哪有PLC可控制编程的培训
  • 在Entity Framework中选择基类(Select base class in Entity Framework)
  • 在Android中出现错误“数据集和渲染器应该不为null,并且应该具有相同数量的系列”(Error “Dataset and renderer should be not null and should have the same number of series” in Android)
  • 电脑二级VF有什么用
  • Datamapper Ruby如何添加Hook方法(Datamapper Ruby How to add Hook Method)
  • 金华英语角.
  • 手机软件如何制作
  • 用于Android webview中图像保存的上下文菜单(Context Menu for Image Saving in an Android webview)
  • 注意:未定义的偏移量:PHP(Notice: Undefined offset: PHP)
  • 如何读R中的大数据集[复制](How to read large dataset in R [duplicate])
  • Unity 5 Heighmap与地形宽度/地形长度的分辨率关系?(Unity 5 Heighmap Resolution relationship to terrain width / terrain length?)
  • 如何通知PipedOutputStream线程写入最后一个字节的PipedInputStream线程?(How to notify PipedInputStream thread that PipedOutputStream thread has written last byte?)
  • python的访问器方法有哪些
  • DeviceNetworkInformation:哪个是哪个?(DeviceNetworkInformation: Which is which?)
  • 在Ruby中对组合进行排序(Sorting a combination in Ruby)
  • 网站开发的流程?
  • 使用Zend Framework 2中的JOIN sql检索数据(Retrieve data using JOIN sql in Zend Framework 2)
  • 条带格式类型格式模式编号无法正常工作(Stripes format type format pattern number not working properly)
  • 透明度错误IE11(Transparency bug IE11)
  • linux的基本操作命令。。。